Question #1412

Write a C++ program that uses while loop to prompt the user to enter 10 integers and the program will calculate the total for all numbers that are smaller than 20. Display the total.

Expert's answer

#include "stdafx.h"

int main(int argc, char * argv[]){

int count = 0;

for(int i = 0; i < 10; i++){
& int in;

& printf("Input number %d: ", i);
& scanf("%d", &in);

& if(in<20) count++;
}

printf("Count: %d\n\n", count);

getchar();
getchar();

return 0;
}
LATEST TUTORIALS
APPROVED BY CLIENTS