题解列表

筛选

1116: IP判断(python)

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

矩阵转置(超级简单)

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

日期问题 (Java代码)

摘要:import java.time.LocalDate; import java.util.Scanner; import java.util.TreeSet; public class Ma……

偶数求和C语言

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

1738: 排序(C语言)

摘要:解题思路:冒泡排序算法暴力解决。注意事项:注意空格和多组输入。参考代码:#include<stdio.h>#define N 101int main(){ int a[N],n,t=0; int j,……