1095: The 3n + 1 problem 摘要:从 a 到 b 挨个判断跌落到 1 需要的次数,保存最大的次数。注意 a 大于 b 的情形。#include <bits/stdc++.h> using namespace std; int …… 题解列表 2022年01月01日 0 点赞 0 评论 252 浏览 评分:0.0
1978: 分类计算 摘要:解题思路:注意事项:参考代码:a,b = map(int,input().split()) if a**2+b**2>100: print(a**2+b**2) else: p…… 题解列表 2022年01月01日 0 点赞 0 评论 427 浏览 评分:0.0
1121: C语言训练-8除不尽的数 摘要:暴力法解决,循环的事情就交给计算机来做吧。#include <bits/stdc++.h> using namespace std; int main(){ for(int i=0;…… 题解列表 2022年01月01日 0 点赞 0 评论 397 浏览 评分: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 评论 264 浏览 评分:0.0
1200: 回文串 摘要:回文串判断,直接 equal 函数往上拍。#include <bits/stdc++.h> using namespace std; int main(){ string s; …… 题解列表 2022年01月01日 0 点赞 0 评论 295 浏览 评分:0.0
1202: 多输入输出练习1 摘要:#include <bits/stdc++.h> using namespace std; //以空格为分隔符分割字符串 vector<int> split(const string &s,…… 题解列表 2022年01月01日 0 点赞 0 评论 249 浏览 评分:0.0
1203: 多输入输出练习2 摘要:#include <bits/stdc++.h> using namespace std; int main(){ const double PI = 3.1415;//PI要取到四…… 题解列表 2022年01月01日 0 点赞 0 评论 403 浏览 评分:0.0
明明的随机数TreeMap自动去重排序 摘要:解题思路:java的TreeMap可以自动去重排序,使用TreeMap逐个添加值然后输出即可。注意事项:输出有2行,第一行是去重后的个数(TreeMap.size())参考代码:import java…… 题解列表 2022年01月01日 0 点赞 0 评论 574 浏览 评分:0.0
1477: 字符串输入输出函数 摘要:简单题。#include<iostream> using namespace std; int main() { double n; string s; co…… 题解列表 2022年01月01日 0 点赞 0 评论 239 浏览 评分:0.0
1999: 回文判断 摘要:equal 无脑往上拍。#include <bits/stdc++.h> using namespace std; int main(){ string s; getlin…… 题解列表 2022年01月01日 0 点赞 0 评论 378 浏览 评分:0.0