题解列表
A+B for Input-Output Practice (V)
摘要:#include<stdio.h>
int main() {
int a;
scanf("%d",&a);
int sum = 0,c;
int b[a][100];
f……
C语言训练-求矩阵的两对角线上的元素之和
摘要:解题思路:#include<bits/stdc++.h>using namespace std;int main(){ int i,j,s=0; int n; int a[10][10]; cin>>……
自定义函数之字符串反转
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h> //strlen()函数在string头文件中,一定得先调用一下 int ……