f0816.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // f0816.cpp
  3. // friend function accessing class member
  4. //=====================================
  5. #include"myvector.h"
  6. #include"mymatrix.h"
  7. #include<iostream>
  8. #include<fstream>
  9. using namespace std;
  10. //-------------------------------------
  11. int main(){
  12.   ifstream in("in.txt");
  13.   int x,y;  in>>x>>y;
  14.   Matrix ma;
  15.   ma.set(x,y);
  16.   for(int i=0; i<x; ++i)
  17.   for(int j=0; j<y; ++j)
  18.     in>>ma.elem(i,j);
  19.   in>>x;
  20.   Vector ve;
  21.   ve.set(x);
  22.   for(int i=0; i<x; ++i)
  23.     in>>ve[i];
  24.   Vector vx = multiply(ma, ve);
  25.   vx.display();
  26.   vx.remove();
  27.   ve.remove();
  28.   ma.remove();
  29. }//====================================
  30.