题解列表

筛选

A+B for Input-Output Practice (IV)

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int i,n=0; int a[100]={0}; while(ci……

链表之节点删除

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

链表删除练习

摘要:解题思路:此题用c++解答相对简单便捷,不得不说stl还是牛注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ list<……

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"……