编写题解 1182: 人民币问题 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<math.h>#include <iomanip>#define PI 3.1415using namespace …… 题解列表 2022年03月28日 0 点赞 0 评论 499 浏览 评分:0.0
编写题解 2015: 自动晾衣机 摘要:解题思路:注意事项:参考代码:l=int(input()) while True: try: ls=list(map(int,input().split())) …… 题解列表 2022年03月28日 0 点赞 0 评论 391 浏览 评分:0.0
看来我把题想的难了 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int sum,t;int main(){ char c; while(c =…… 题解列表 2022年03月28日 0 点赞 0 评论 429 浏览 评分:0.0
编写题解 1183: 人见人爱A+B 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; cin>>n; int a,b,c,d…… 题解列表 2022年03月28日 0 点赞 0 评论 335 浏览 评分:0.0
编写题解 1184: 众数问题 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[1000]; int n; cin>>n…… 题解列表 2022年03月28日 0 点赞 0 评论 344 浏览 评分:0.0
编写题解 1202: 多输入输出练习1 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; int max = 0; while(…… 题解列表 2022年03月28日 0 点赞 0 评论 231 浏览 评分:0.0
简易for循环+数组解决傻瓜式教学 摘要:解题思路:第一层for循环遍历1~N所有数字,第二层for循环在每一个遍历的数字中查找因数,并用数组存储因数,之后在用if确定是否是完数而是否输出其因数即可。注意事项:在第一层每一次的for循环中要把…… 题解列表 2022年03月28日 0 点赞 0 评论 555 浏览 评分:0.0
编写题解 1203: 多输入输出练习2 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<math.h>#include <iomanip>#define PI 3.1415using namespace …… 题解列表 2022年03月28日 0 点赞 0 评论 329 浏览 评分:0.0
编写题解 1204: 大小写转换 摘要:解题思路:注意事项:参考代码:#include<iostream>#include <iomanip>#include<ctype.h>using namespace std;int main(){ …… 题解列表 2022年03月28日 0 点赞 0 评论 428 浏览 评分:0.0
java 任意年月日历输出(GregorianCalendar日历类获取每月天数和每月第一天是星期几) 摘要:话不多说,直接看代码 ```java import java.io.BufferedReader; import java.io.IOException; import java.io.Inp…… 题解列表 2022年03月28日 0 点赞 0 评论 790 浏览 评分:0.0