Write a program to read numbers 10,20,30,40,50,60,70,80,90,100 and print same numbers
#include <iostream>
using namespace std;
int main() {
int a,b,c,d,e,f,g,h,i,j = 10,20,30,40,50,60,70,80,90;
cout << a << " ," << b << " ," << c << " ," << d << " ," << e << " ," << f << " ," << g << " ," << h << " ," << i << " ," << j << "." << endl;
return 0;
}
10, 20, 30, 40, 50, 60, 70, 80, 90.
Comments
Leave a comment