原神andc++萌新出品 题解:1267: A+B Problem 摘要:原神 启动!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!参考代码: #include<iostream>using namespace std;int main(){ …… 题解列表 2023年11月12日 0 点赞 0 评论 438 浏览 评分:8.0
1953: 三位数分解 摘要:解题思路:注意事项:数位的算法参考代码:#include <iostream>using namespace std;int main(){ int a,b,c,d; cin>>d; …… 题解列表 2023年11月12日 0 点赞 0 评论 770 浏览 评分:9.9
1953: 三位数分解 摘要:解题思路:注意事项:数位的算法参考代码:#include <iostream>using namespace std;int main(){ int a,b,c,d; cin>>d; …… 题解列表 2023年11月12日 0 点赞 0 评论 739 浏览 评分:9.9
2764: 带余除法 摘要:解题思路:注意事项:cin不能用,参考代码:#include <iostream>using namespace std;int main(){ int a,b,c,d; cin>>a>>…… 题解列表 2023年11月12日 0 点赞 0 评论 622 浏览 评分:9.9
三位数分解(题解) 摘要:解题思路:输入一个三位整数,分三行分别输出这个三位数的百位、十位、个位数。输入格式注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int m…… 题解列表 2023年11月12日 0 点赞 0 评论 698 浏览 评分:9.9
三位数分解 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int three,ge,shi,bai; cin>>t…… 题解列表 2023年11月12日 0 点赞 0 评论 482 浏览 评分: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 评论 528 浏览 评分:2.0
递归_c++思路简单 摘要:解题思路:很简单自己看能懂注意事项:参考代码:#include<iostream>using namespace std;char arr[50][50];void Display(int size,…… 题解列表 2023年11月12日 0 点赞 0 评论 509 浏览 评分:9.9
题解 [编程基础]输入输出练习之输出图案 摘要:解题思路:首先用“char”类型定义一个变量,再输入,再输出就可以了注意事项:要用char类型定义变量参考代码:#include <bits/stdc++.h>using namespace std;…… 题解列表 2023年11月12日 0 点赞 0 评论 683 浏览 评分:9.9
原题链接:Hello, World! 摘要:解题思路:1、输出参考代码:#include<iostream>using namespace std;int main (){cout<<"Hello, World!"<<endl;return 0…… 题解列表 2023年11月11日 0 点赞 0 评论 934 浏览 评分:9.9