题解列表
信息学奥赛一本通T1340-扩展二叉树 ?????
摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h"
using namespace std;
// 全局变量,存储输入的字符串
string s;
// 全局变量,当……
信息学奥赛一本通T1260-拦截导弹
摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h"
using namespace std;
int main(){
// 定义数组a和b,长度为1100,n初……
1151: C语言训练-计算一个整数N的阶乘
摘要:解题思路:注意事项:注意阶乘不要超过20,否则超了LONG LONG的范围参考代码:#include<bits/stdc++.h>using namespace std;int main(){ lon……
2000: 偶数列举题解
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; cin>>n; for(int i=2;i<……
编写题解 3010: 奇偶数之和
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n,s=0,t=0; cin>>n; for(in……
编写题解 2780: 奇偶数判断
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a; cin>>a; if(a%……
编写题解 1008: [编程入门]成绩评定
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std; int main(){ int x; cin >> x; char sco……
3086: 信息学奥赛一本通T1337-单词查找树 真阴啊这题
摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h"
using namespace std;
// 定义一个字符串数组,用于存储输入的字符串
string s[2000……