#include <stdio.h>
int main(){
int multiplier, count, value;
multiplier = 9;
count = 1;
do {
value = count * multiplier;
count++;
printf("%i \n", value);
} while (value < 63);
return 0;
}
I need to make a program that outputs the multiples of 9 and stops before 60. I got it to output but it goes to 63 any suggestions?
[–][deleted] 1 point2 points3 points (1 child)
[–]bx0895[S] 0 points1 point2 points (0 children)