原神andc++萌新出品 题解:1267: A+B Problem 摘要:原神 启动!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!参考代码: #include<iostream>using namespace std;int main(){ …… 题解列表 2023年11月12日 0 点赞 0 评论 249 浏览 评分:8.0
1953: 三位数分解 摘要:解题思路:注意事项:数位的算法参考代码:#include <iostream>using namespace std;int main(){ int a,b,c,d; cin>>d; …… 题解列表 2023年11月12日 0 点赞 0 评论 592 浏览 评分:9.9
1953: 三位数分解 摘要:解题思路:注意事项:数位的算法参考代码:#include <iostream>using namespace std;int main(){ int a,b,c,d; cin>>d; …… 题解列表 2023年11月12日 0 点赞 0 评论 551 浏览 评分:9.9
2764: 带余除法 摘要:解题思路:注意事项:cin不能用,参考代码:#include <iostream>using namespace std;int main(){ int a,b,c,d; cin>>a>>…… 题解列表 2023年11月12日 0 点赞 0 评论 423 浏览 评分:9.9
三位数分解(题解) 摘要:解题思路:输入一个三位整数,分三行分别输出这个三位数的百位、十位、个位数。输入格式注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int m…… 题解列表 2023年11月12日 0 点赞 0 评论 431 浏览 评分:9.9
成绩排序(Python实现) 摘要:解题思路:注意事项:参考代码:def sort_students(students): students.sort(key=lambda x: (x[2], x[0], x[1])) re…… 题解列表 2023年11月12日 0 点赞 0 评论 401 浏览 评分:0.0
Hello, World!Hello, World!Hello, World! 摘要:解题思路: 注意事项:注意要写成Hello, World!参考代码:#include <bits/stdc++.h>using namespace std;int main(){ cout…… 题解列表 2023年11月12日 0 点赞 0 评论 264 浏览 评分:0.0
鸡尾酒疗法 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; double x,y,d,d1…… 题解列表 2023年11月12日 0 点赞 0 评论 513 浏览 评分:8.5
三位数分解 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int three,ge,shi,bai; cin>>t…… 题解列表 2023年11月12日 0 点赞 0 评论 298 浏览 评分:6.0
三个数最大值1002题解(c++) 摘要:#include using namespace std; int main() { int a; int b; int c; cin>>a>>b>>c; if (a>b>c)…… 题解列表 2023年11月12日 0 点赞 0 评论 313 浏览 评分:2.0