题解列表

筛选

矩阵转置(超级简单)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){      int a[100][100];      int n,i,j;      scanf("%d",&n……

1116: IP判断(python)

摘要:解题思路:1、EOF即为"End of file"缩写2、四个整数中不允许有前导零存在:即当数字长度大于一位时(0是可以的),第一位为0的数都是含有前导零的数参考代码:while True:    t……

2794: 求平均年龄

摘要:```cpp #include #include using namespace std; int main() { int n,m,i=0; double sum=0;……