Last active
December 12, 2015 02:18
-
-
Save linmx0130/4698057 to your computer and use it in GitHub Desktop.
Only for testtime...
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int main() | |
{ | |
int i,j; | |
float k=10000; | |
for (i=1;i<=50000;++i) | |
{ | |
for (j=1;j<=50000;++j) | |
{ | |
k=k+5.4; | |
k=k/3.1; | |
} | |
} | |
printf("%lf\n",k); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment