ဒီတစ္ခါပုစၧာကေတာ့ 1 ကေနစတဲ့ integer ေတြကို Row ကေန မဟုတ္ဘဲ Column လိုက္စီထည့္သြားမွာျဖစ္ပါတယ္ခင္ဗ်။
#include <iostream.h>
#include <stdlib.h>
#include <conio.h>
void main()
{
int m,n,a[100][100];
cout<<"Enter the number of Row =\t";
cin>>m;
cout<<"Enter the number of Column=\t";
cin>>n;
int start=1;
for (int j=0;j<n;j++)
for (int i=0;i<m;i++)
{
a[i][j]=start;
start++;
}
for (int i=0;i<m;i++)
{
cout<<'\n';
for (int j=0;j<n;j++)
{
cout<<a[i][j]<<" \t";
}
}
getch ();
}
ရလာမယ့္အေျဖကေတာ့
Comments :
Post a Comment