C++을 이용한 덧셈 , 뺄셈, 곱셈의 매트릭스
본 자료는 미만의 자료로 미리보기를 제공하지 않습니다.
닫기
  • 1
해당 자료는 0페이지 까지만 미리보기를 제공합니다.
0페이지 이후부터 다운로드 후 확인할 수 있습니다.

소개글

C++을 이용한 덧셈 , 뺄셈, 곱셈의 매트릭스에 대한 보고서 자료입니다.

본문내용

#include
#include
using namespace std;

double *input_element( int row, int col);
void plus_operator( double *pt1, double *pt2, int row, int col);
void minus_operator( double *pt1, double *pt2, int row, int col);
void multiply_operator( double *pt1, double *pt2, int row, int col);

void main()
{
int i, j;
int row, col;
int sel;
double *pt1, *pt2 ;

cout<<"Input row size of Matrix : ";
cin>>row;
cout<<"Input col size of Matrix : ";
cin>>col;

키워드

  • 가격800
  • 페이지수1페이지
  • 등록일2006.04.05
  • 저작시기2006.3
  • 파일형식기타(txt)
  • 자료번호#342822
본 자료는 최근 2주간 다운받은 회원이 없습니다.
청소해
다운로드 장바구니