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.
Question 5
1
Expert's answer
2013-01-29T11:16:20-0500
#include <iostream>
using namespace std;
int main() { cout << "enter 10 numbers" << endl; int k[10]; for(int i=1;i<=10;i++) { & cin>>k[i];
Comments
Leave a comment