ဒါေလးကေတာ့ အေပၚက Matrix ကို column လိုက္ ၾကီးစဥ္ငယ္လိုက္ စည္လိုက္တာပါခင္ဗ်။
#include <iostream.h>
#include <conio.h>
#include <stdlib.h>
void main ()
{
int i,j,a[6][6];
for (i=1;i<7;i++)
for (j=1;j<7;j++)
a[i][j]=-rand()%100-50;
cout<<"Matrix A=";
for (i=0;i<6;i++)
{
cout<
for (j=0;j<6;j++)
cout<<<" ";
}
int k,bk;
for (i=0;i<6;i++)
for (j=0;j<6;j++)
for (k=0;k<6;k++)
if (a[j][i]>a[k][i])
{
bk=a[j][i];
a[j][i]=a[k][i];
a[k][i]=bk;
}
cout<
cout<<"Matrix B=\n";
for (i=0;i<6;i++)
{
cout<
for (j=0;j<6;j++)
cout<<<" ";
}
getch();
}
C++ အိမ္စာမ်ား(၄)
ကိုပခန္း, Sunday, 22 November 2009
Subscribe to:
Post Comments (Atom)
Comments :
Post a Comment