题解列表

筛选

小矛盾的结构体统计之成绩统计2 C语言

摘要:解题思路:    只关注了大概要掌握的            输入与输出的例子告诉 输入是整型,输出也是            输入 第一行次数      &nbs

图像相似度

摘要:解题思路:分别存入两个列表,一一比对注意事项:参考代码:m,n=map(int,input().split())myList1=[list(map(int,input().split())) for ……

3006: 适合晨练

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

题解 3009: 判断闰年

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

 编写题解 2998: 电影票

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int a;    cin>>a;    cout<<a<<" ……

3009: 判断闰年

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

编写题解 3001: 整数的和

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int a,b,c;    cin>>a>>b>>c;    c……