Как выполнить только один цикл в c++.
это мой код.:
#include<iostream> using namespace std; int a; int b; int main(){ cout<<"enter the number you want the table of"<<endl; cin>>b; if (b=2) { cout<< } for ( a =1; a <= 10; a++) { cout<<"2 multiplied by" ; cout<<a; cout<<"="; cout<<2*a<<endl; } for ( a =1; a <= 10; a++) { cout<<"3 multiplied by" ; cout<<a; cout<<"="; cout<<3*a<<endl; } for ( a =1; a <= 10; a++) { cout<<"4 multiplied by" ; cout<<a; cout<<"="; cout<<4*a<<endl; }
Что я уже пробовал:
Я не знаю, что делать.
мои знания ограничены.
Я новичок.