У меня есть проблема с использованием цикла
Write a program that prompts an integer, and write multiplication table from 1 to that number. For example if the integer is 3 the output should be 1 2 3 4 5 6 7 8 9 10 2 4 6 8 10 12 16 18 20 3 6 9 12 15 18 21 24 27 30 Use nested for loops (two for loops one outer loop, one inner loop).
Что я уже пробовал:
#include <iostream> using namespace std; int main() { int num ,b,c,d; cout <<"Enter an number to get the multiplication table from 1 to that number"<<endl; cin>>num; for (b=1;b<=num;b++) { for(c=1;c<=num;c++) { d=b*c; cout<<d;} cout<<endl;} return 0; }
CHill60
В чем проблема?