Zitat von
rawsoul:
Code:
int main() {
DWORD t = GetTickCount();
for(int b = 1; b < 45; b++)
for(int d = 1; d < 33; d++)
for(int e = 1; e < 33; e++)
if(b+d==50 && b+e==45 && d+e==33)
cout << b << ' ' << d << ' ' << e << endl;
t = GetTickCount() - t;
cout << t << endl;
system("PAUSE");
return EXIT_SUCCESS;
}
Wie kann ich diesen Code in Delphi einsetzen?
Gruß
Klaus