Skip to content

Instantly share code, notes, and snippets.

@linmx0130
Last active December 12, 2015 02:18
Show Gist options
  • Save linmx0130/4698057 to your computer and use it in GitHub Desktop.
Save linmx0130/4698057 to your computer and use it in GitHub Desktop.
Only for testtime...
#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