0
write a program to input two numbers m and n and display first multiples of n
3 odpowiedzi
+ 1
it is simple
int m,n;
cin >> m >> n;
for (int i=1; i<=m; i++)
cout << m*n << endl;
0
And for C?
0
Áshík see the lessons on scanf and printf to see how to do I/O in C