C++简单解法 摘要:#includeusing namespace std;int main(void){ int a,b,c; cin>>a>>b>>c; cout…… 题解列表 2025年02月28日 2 点赞 0 评论 1255 浏览 评分:10.0
1806: [编程基础]输入输出练习之第二个数字 摘要:解题思路:输入三个正整数,取其第二个数字,即:a,b,c中的b注意事项:别输错数,别选错语言(C++)参考代码:#include<bits/stdc++.h> using namespace std…… 题解列表 2021年05月24日 0 点赞 0 评论 2492 浏览 评分:9.9
编写题解 1806: [编程基础]输入输出练习之第二个数字 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c…… 题解列表 2024年07月23日 0 点赞 0 评论 1869 浏览 评分:9.9
编写题解 1806: [编程基础]输入输出练习之第二个数字 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a,b,c;int main(){ cin>>a>>b>>c; …… 题解列表 2024年06月09日 0 点赞 0 评论 1440 浏览 评分:9.9
要啥留啥, 摘要:参考代码:#include<iostream> using namespace std; int main() { int a, res; for(int i = 3; i > 0…… 题解列表 2024年01月01日 0 点赞 0 评论 1145 浏览 评分:9.9
萌新出品 1806: [编程基础]输入输出练习之第二个数字 摘要:参考代码:#include<iostream>using namespace std;int main(){ int a,b,c; cin>> a >> b >> c; cout<<…… 题解列表 2023年11月15日 0 点赞 0 评论 860 浏览 评分:9.9
题解 1806: [编程基础]输入输出练习之第二个数字 摘要:解题思路:输入三个正整数,取其第二个数字,即:a,b,c中的b;注意事项:别输错数,别选错语言(C++);参考代码:#include<bits/stdc++.h>using namespace std…… 题解列表 2023年12月02日 0 点赞 0 评论 749 浏览 评分:9.9
1806: [编程基础]输入输出练习之第二个数字 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a,b,c;int main(){ cin>>a>>b>>c; …… 题解列表 2023年12月05日 0 点赞 0 评论 740 浏览 评分:9.9
输入输出练习之第二个数字(简单C++) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int a,b,c; cin>>a>>…… 题解列表 2022年10月31日 0 点赞 0 评论 1440 浏览 评分:7.3
[编程基础]输入输出练习之第二个数字-题解(C++代码) 摘要: ```cpp #include using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; cout…… 题解列表 2020年10月04日 0 点赞 0 评论 1132 浏览 评分:6.0