Install the app
How to install the app on iOS

Follow along with the video below to see how to install our site as a web app on your home screen.

Note: This feature may not be available in some browsers.

Sticky How about count to a 100,000?

NE1lPv6.png
 
Code:
start_time = clock();
for(long i=0;i<1000000;i++){
   num1 = rand();
   num2=rand();
   gcd1(num1,num2);
}

end_time = clock();

elapsed_time = (end_time - start_time) / CLOCKS_PER_SEC;

printf( "time is %.3f seconds\n", elapsed_time );
system("pause");
 
Code:
start_time = clock();
for(long i=0;i<1000000;i++){
   num1 = rand();
   num2=rand();
   gcd1(num1,num2);
}

end_time = clock();

elapsed_time = (end_time - start_time) / CLOCKS_PER_SEC;

printf( "time is %.3f seconds\n", elapsed_time );
system("pause");

Looks like we need some practice posting images.
Please look at the example image below to post an image.
1. Find an image you would like to post.
2. Right click the image.
3. Copy Image Address.
4. Click the icon in the image below.
Screen-Shot-2023-06-05-at-10-56-56-AM.png

5. Paste image address.
6. Click Insert.
 
Back
Top