1 | 2 | 3 | 4 | 5 | |
6 | 7 | 9 | 10 | ||
11 | 12 | 13 | 14 | 15 | |
16 | 17 | 18 | 19 | 20 | |
21 | 22 | 23 | 24 | 25 |
Solution:
for(i=0;i<5;i++) //assign values to the two-dimensional array
for(j=0;j<=5;j++){
if(i==0) tArr[i][j]=j+1; //fill the first row
if(i>0 && j==0)
tArr[i][j]=tArr[i-1][4]+1; //fetching the value of the last cell in the previous row
else
tArr[i][j]=tArr[i][j-1]+1; //fill subsequent cells
}
for(i=0;i<5;i++){ //print the array
for(j=0;j<5;j++)
cout<<tArr[i][j]<<"\t";
cout<<endl;
}
getch();
return 0;
}
![]() Kostandin Can someone Help me please i have this exercise but different 2018-04-06 |
![]() Evan F this seems simpler 2017-08-30 |
![]() Mariano I would replace 2016-12-07 |
|
This website intents to provide free and high quality tutorials, examples, exercises and solutions, questions and answers of programming and scripting languages:
C, C++, C#, Java, VB.NET, Python, VBA,PHP & Mysql, SQL, JSP, ASP.NET,HTML, CSS, JQuery, JavaScript and other applications such as MS Excel, MS Access, and MS Word. However, we don't guarantee all things of the web are accurate. If you find any error, please report it then we will take actions to correct it as soon as possible.