1981: 输出M到N的数 摘要:无脑打印。#include<bits/stdc++.h> using namespace std; int main(){ int a,b; cin >> a >> b; …… 题解列表 2022年01月02日 0 点赞 0 评论 326 浏览 评分:0.0
1985: 分段计算 摘要:#include<bits/stdc++.h> using namespace std; int main(){ int x; cin >> x; if(x<3)…… 题解列表 2022年01月02日 0 点赞 0 评论 443 浏览 评分:0.0
2630: 又一个送分题 摘要:#include <bits/stdc++.h> using namespace std; int main(){ int n,a; cin >> n; doub…… 题解列表 2022年01月01日 0 点赞 0 评论 456 浏览 评分:0.0
1250: 素数回文 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; bool sushu(int &n){//判断素数 if(n…… 题解列表 2022年01月01日 0 点赞 0 评论 467 浏览 评分:0.0
1999: 回文判断 摘要:equal 无脑往上拍。#include <bits/stdc++.h> using namespace std; int main(){ string s; getlin…… 题解列表 2022年01月01日 0 点赞 0 评论 486 浏览 评分:0.0
1477: 字符串输入输出函数 摘要:简单题。#include<iostream> using namespace std; int main() { double n; string s; co…… 题解列表 2022年01月01日 0 点赞 0 评论 313 浏览 评分:0.0
1203: 多输入输出练习2 摘要:#include <bits/stdc++.h> using namespace std; int main(){ const double PI = 3.1415;//PI要取到四…… 题解列表 2022年01月01日 0 点赞 0 评论 512 浏览 评分:0.0
1202: 多输入输出练习1 摘要:#include <bits/stdc++.h> using namespace std; //以空格为分隔符分割字符串 vector<int> split(const string &s,…… 题解列表 2022年01月01日 0 点赞 0 评论 350 浏览 评分:0.0
1200: 回文串 摘要:回文串判断,直接 equal 函数往上拍。#include <bits/stdc++.h> using namespace std; int main(){ string s; …… 题解列表 2022年01月01日 0 点赞 0 评论 384 浏览 评分:0.0
1123: C语言训练-列出最简真分数序列* 摘要:#include <bits/stdc++.h> using namespace std; bool Judge(int &a,int &b){ for(int i=2;i<=a;i…… 题解列表 2022年01月01日 0 点赞 0 评论 357 浏览 评分:0.0