题解列表
信息学奥赛一本通T1325-循环比赛日程表-题解(各语言代码)
摘要:首先找到规律,矩阵是中心对称的
左上角和右下角相同,右上角和左下角相同

然……
1067: 二级C语言-分段函数(c++代码)
摘要:解题思路:分开来做注意事项:无参考代码:#include<iostream>#include<cmath>#include<iomanip>using namespace std;int main()……
编写题解 1032: [编程入门]自定义函数之字符串连接(c++)
摘要:解题思路:定义两个字符串,再分别输出注意事项:不要换行!不要换行!不要换行!参考代码:#include<iostream>using namespace std;int main(){ stri……
1000: [竞赛入门]简单的a+b(c++)
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; while(ci……
1001: [编程入门]第一个HelloWorld程序(c++)
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ cout<<"*************************……
[编程入门]成绩评定
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long n;int main(){ cin>>n; if(n>=……
简易代码(C)望空破茧
摘要:解题思路:常规:赋值——比较——得出最小绝对值的下标——调换——输出注意事项:见代码解析参考代码:#include <stdio.h>//输入数据并交换后输出 #include <math.h> in……
1061: 二级C语言-计负均正
摘要:解题思路:咱不说别的,直接上代码!!!(因为其实也没啥好说的~)参考代码:#include<bits/stdc++.h>
using namespace std;
int main()
{
……
Python题解字符串分类统计
摘要:解题思路:注意事项:参考代码:zm,sz,kg,qt=0,0,0,0s=input()for c in s: if c>='a' and c<='z' or c>……