how to create multiplication table using 'while' with input number | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
+ 3

how to create multiplication table using 'while' with input number

how can u create multiplication table by inputting any number and get its multiplication table . ex. int no =2 while(no<22){ cout<<number <<no <<endl; no+=2 } output 2 ,4,6,8...,20 so how can i take any value as 'no' and create its multiplication table ?

22nd Jan 2018, 12:29 PM
Rushikesh
Rushikesh - avatar
2 Antworten
+ 7
Would be shorter with a for loop. int n; cin >> n; for (int i = 0; i < 22; i++) cout << n << "*" << i << " = " << n*i << endl; // which is the equivalent of int n, i = 0; cin >> n; while (i < 22) { cout << n << "*" << i << " = " << n*i << endl; i++; } // ... doesn't really look like much of a difference now, does it.
22nd Jan 2018, 12:43 PM
Hatsy Rei
Hatsy Rei - avatar
+ 6
Replace 'int no=3' with 'no = Input()', the user will then define 'no'
22nd Jan 2018, 12:42 PM
Nigel Yong
Nigel Yong - avatar