Creat a 12 row and 14 column table using loops | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
0

Creat a 12 row and 14 column table using loops

12 row and 14 column table, row = 1 to 12

13th Nov 2016, 7:26 PM
Anicetus Umenwaniri
Anicetus Umenwaniri - avatar
1 Antwort
+ 2
int arr[11][13],j,i; for (i=0;i<=11;i++){ for(j=0;j<=13;j++){ cin>>arr[i][j]; }}
20th Nov 2016, 9:58 PM
Денис Данов
Денис Данов - avatar