重载矩阵加法运算 代码参考
2020-04-29 16:02:16来源:博客园 阅读 ()
重载矩阵加法运算 代码参考
1 #include <iostream> 2 3 using namespace std; 4 5 class Matrix 6 { 7 private: 8 int a,b; 9 int arr[100][100]; 10 public: 11 Matrix() 12 { 13 for(int i=0;i<100;i++) 14 { 15 for(int j=0;j<100;j++) 16 { 17 arr[i][j]=0; 18 } 19 } 20 } 21 void Gethl(int a, int b){this->a=a;this->b=b;} 22 void Getnum() 23 { 24 for(int i=0;i<a;i++) 25 { 26 for(int j=0;j<b;j++) 27 { 28 cin>>arr[i][j]; 29 } 30 } 31 } 32 Matrix operator+(Matrix &c) 33 { 34 Matrix temp; 35 for(int i=0;i<a;i++) 36 { 37 for(int j=0;j<b;j++) 38 { 39 temp.arr[i][j]=this->arr[i][j]+c.arr[i][j]; 40 } 41 } 42 return temp; 43 } 44 void operator=(Matrix c) 45 { 46 for(int i=0;i<a;i++) 47 { 48 for(int j=0;j<b;j++) 49 { 50 arr[i][j]=c.arr[i][j]; 51 } 52 } 53 } 54 void show() 55 { 56 for(int i=0;i<a;i++) 57 { 58 for(int j=0;j<b;j++) 59 { 60 if(j!=0) cout<<" "<<arr[i][j]; 61 else cout<<arr[i][j]; 62 if(j==b-1) cout<<endl; 63 } 64 } 65 } 66 }; 67 68 int main() 69 { 70 int a,b; 71 cin>>a>>b; 72 Matrix one,two,three; 73 one.Gethl(a,b); 74 two.Gethl(a,b); 75 three.Gethl(a,b); 76 one.Getnum(); 77 two.Getnum(); 78 three=one+two; 79 three.show(); 80 return 0; 81 }
原文链接:https://www.cnblogs.com/Conan-jine/p/12804743.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- C++ 运算符重载 2020-06-10
- 稀疏矩阵类 2020-06-09
- 重载加法运算符的复数运算 代码参考 2020-04-29
- C++基础 学习笔记五:重载之运算符重载 2020-04-23
- C++基础 学习笔记四:重载之函数重载 2020-04-22
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash