题解列表

筛选

2883: 矩阵加法

摘要:``` #include using namespace std; const int N=110; int a[N][N],b[N][N]; int main(){ int n,m;……

2883: 矩阵加法 C++

摘要:解题思路:外层循环变量i为行号; 内层循环变量j为列号; 注意事项:参考代码:#include<bits/stdc++.h>using namespace std;const int N=110;in……

for and if买房子

摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cmath>using namespace std;int main(){    double y=200;  ……

2779: 输出绝对值

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    double x;    cin >> x  ;  ……