1477: 字符串输入输出函数 摘要:简单题。#include<iostream> using namespace std; int main() { double n; string s; co…… 题解列表 2022年01月01日 0 点赞 0 评论 198 浏览 评分:0.0
明明的随机数TreeMap自动去重排序 摘要:解题思路:java的TreeMap可以自动去重排序,使用TreeMap逐个添加值然后输出即可。注意事项:输出有2行,第一行是去重后的个数(TreeMap.size())参考代码:import java…… 题解列表 2022年01月01日 0 点赞 0 评论 528 浏览 评分:0.0
1004: [递归]母牛的故事 摘要:解题思路:其实本质上都是数学问题,我们可以从最简单的观察入手。从第一年第十年,所得牛数依次是1,2,3,4,6,9,13,19,28,41我们可以观察到规律,从第四年起,答案符合f[n]=f[n-1]…… 题解列表 2022年01月01日 0 点赞 0 评论 425 浏览 评分:9.9
1203: 多输入输出练习2 摘要:#include <bits/stdc++.h> using namespace std; int main(){ const double PI = 3.1415;//PI要取到四…… 题解列表 2022年01月01日 0 点赞 0 评论 366 浏览 评分:0.0
1202: 多输入输出练习1 摘要:#include <bits/stdc++.h> using namespace std; //以空格为分隔符分割字符串 vector<int> split(const string &s,…… 题解列表 2022年01月01日 0 点赞 0 评论 218 浏览 评分:0.0
1200: 回文串 摘要:回文串判断,直接 equal 函数往上拍。#include <bits/stdc++.h> using namespace std; int main(){ string s; …… 题解列表 2022年01月01日 0 点赞 0 评论 259 浏览 评分: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 评论 233 浏览 评分:0.0
1121: C语言训练-8除不尽的数 摘要:暴力法解决,循环的事情就交给计算机来做吧。#include <bits/stdc++.h> using namespace std; int main(){ for(int i=0;…… 题解列表 2022年01月01日 0 点赞 0 评论 363 浏览 评分: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 评论 388 浏览 评分:0.0
1095: The 3n + 1 problem 摘要:从 a 到 b 挨个判断跌落到 1 需要的次数,保存最大的次数。注意 a 大于 b 的情形。#include <bits/stdc++.h> using namespace std; int …… 题解列表 2022年01月01日 0 点赞 0 评论 224 浏览 评分:0.0