题解列表
c++++++++++++++++++++++++
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int b[100];bool jud(int k){ if (k == 2)re……
2819: 数字反转题解
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ long long n,sum=0; cin &……
编写题解 1147: C语言训练-角谷猜想
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long n……
c++++++++++++++++++++++++
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string ……
题解 3016: 第几项
摘要:解题思路:注意事项:for和while都可以!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!参考代码:#include ……
编写题解 1015: [编程入门]求和训练 文章 > 编写题解
摘要:解题思路:注意事项:注意最后输出时要保留两位小数,sum3+=1 . 0/i时1需要+.0参考代码:#include<bits/stdc++.h>using namespace std;i……
c++标题太短写点废话
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<unordered_map>#include<string>using name……
1009简单易看题解,并注释
摘要:```#include#includeint main(){ char a[6]; scanf("%s",a); //直接用库函数 int ……
根据不同结构体对象,创建数组变量来解决
摘要:解题思路:不同学生有不同的结构体对象,可利用可变数组来储存,并调用注意事项:正确使用可变数组的定义和声明参考代码:#include <iostream>#include <vecto……