cleptomanicx
15-09-2008, 16:34
Hallo,
Ich will die erste Aufgabe beim "Project Euler" lösen, aber irgendwie will es nicht klappen.
Hier die Aufgabe:
If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23.
Find the sum of all the multiples of 3 or 5 below 1000.
meine Lösung:
#include <iostream>
using namespace std;
int main()
{
int sumtmp;
int sum;
int threesum;
int fivesum;
for ( int i = 1; sum<1000; i++)
{
threesum = i*3;
fivesum = i*5;
sum = threesum+fivesum+sumtmp;
sumtmp = sum;
cout <<"\ni:"<<i<<" "<<sum;
}
return 0;
}
Es genügt auch nur ein kleiner Hinweis.
MFG
Ich will die erste Aufgabe beim "Project Euler" lösen, aber irgendwie will es nicht klappen.
Hier die Aufgabe:
If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23.
Find the sum of all the multiples of 3 or 5 below 1000.
meine Lösung:
#include <iostream>
using namespace std;
int main()
{
int sumtmp;
int sum;
int threesum;
int fivesum;
for ( int i = 1; sum<1000; i++)
{
threesum = i*3;
fivesum = i*5;
sum = threesum+fivesum+sumtmp;
sumtmp = sum;
cout <<"\ni:"<<i<<" "<<sum;
}
return 0;
}
Es genügt auch nur ein kleiner Hinweis.
MFG