You will get email Reply within few hours

Saturday 17 August 2013

loops



needed a C program to count backward from 100 to 1 in increments of 10 this is what I got can you fix it?
#include
int main()
{
int n;
for (n - 100;n>0; n = n-10);
printf('%I",n);
getchar();
return 0;}

Now create counting program that prompts the user for three inputs that determine how and what to count. Store the user's answers in variables. Use the acquired data to build your counting program with a for loop and display the results to the user.
1 Beginning number to start counting from
2 Ending number to stop counting at
3 Increment number

create a counting program that counts backward from 100 to 1 in increments of 10. Now create a counting program that prompts the user for three inputs (shown next) that determine how and what to count. Store the user's answers in variables. Use acquired data to build your counting program with a for loop and display the results to user
Need Solution https://gum.co/xucV