Commit b40951e4 by makuks

Update Homework1.c

parent 341c1721
Showing with 7 additions and 3 deletions
......@@ -17,9 +17,13 @@ double denominator;
printf("Please enter the enter the stopping value: ");
scanf("%lf", &B);
printf("Please enter the number of steps: ");
scanf("%lf", &N);
do{
printf("Please enter the number of steps: ");
scanf("%lf", &N);
if(N < 0){
printf("Please enter a positive number of steps.\n")
}
}while(N < 0);
H = (B - A) / N;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment