?? matopr.bak
字號:
//Matrix Operations
#include <iostream.h>
#include <iomanip.h>
#include <conio.h>
#include "e:\vivek\MCA_SEM2\DFS\Array\Matrix\matrix.cpp"
void main()
{
int choice;
matrix obj;
while(1){
clrscr();
cout<<"\t\tMATRIX OPERATIONS\n\n";
cout<<"\t\t1) Addition\n";
cout<<"\t\t2) Subtraction\n";
cout<<"\t\t3) Multiplication\n";
cout<<"\t\t4) Exit\n";
cout<<"\t\tEnter your Choice : ";
cin>>choice;
switch(choice){
case 1 : obj.matAdd();
break;
case 2 : obj.matSub();
break;
case 3 : obj.matMul();
break;
case 4 : goto out;
default: cout<<"\n\n\t\tInvalid Choice\n\n";
getch();
break;
}
}
out:
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -