ဒီေန႔ေတာ့ ဆရာမေပးတဲ့ Matrix အိမ္စာေလးေတြ တင္လိုက္ပါတယ္ခင္ဗ်ာ။ (i)*sin(j)/cos(j) ဖန္ရွင္ အတိုင္း Matrix ေလး ေဆာက္ခိုင္းတာပါခင္ဗ်။
iostream ရဲ႕ ေနာက္မွာလည္း > ဒါေလးေတြ ခ်န္ခဲ့ပါတယ္။ ဒီမွာက အဖြင့္အပိတ္ေတြအတြင္းကို ေဖၚျပမေပးလို႔ပါခင္ဗ်။
#include<iostream.h>
#include<conio.h>
#include<math.h>
#include<iomanip.h>
void main ()
{
int i,j;
float a[6][6];
for (i=1;i<7;i++)
for (j=1;j<7;j++)
a[i][j]=(i)*sin(j)/cos(j);
cout<<"Matrix A=";
for (i=0;i<6;i++)
{
cout<<endl;
for (j=0;j<6;j++)
cout<<setw(10)<<a[i][j]<<" ";
}
getch();
}
Subscribe to:
Post Comments (Atom)
Comments :
Post a Comment