#include conio.h
#define MAX 3
//function prototype
void inputMAt();
void determinant();
int matrix[MAX][MAX];
int x=0,y=0;
int inputMat(int i, int j){
int next=10;
cout<<"\n\n\tINPUT A NUMBER : ";
for(i=0;i
}
next=next+8;
}
return (i,j);
}
void determinant(){
//int result;
}
void main(){
int x=0,y=0;
char ans;
do{
{
cout<<"\tMilloza, Julius S.";
cout<<"\t\t\t\tMay 11, 2011";
inputMat(x,y);
determinant();
gotoxy(10,10);
cout<<"Determinant : ";
}
cout<<"\n\n\tTRY AGAIN(Y/N)? : "; cin>>ans;
clrscr();
}while(ans=='y'||ans=='Y');
}