编写题解 1806: [编程基础]输入输出练习之第二个数字 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a,b,c;int main(){ cin>>a>>b>>c; …… 题解列表 2024年06月09日 0 点赞 0 评论 891 浏览 评分:9.9
编写题解 3000: 交换值 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; cout<<b<<…… 题解列表 2024年06月09日 0 点赞 0 评论 703 浏览 评分:9.9
编写题解 1267: A+B Problem 摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){ int a,b; cin>>a>>b; cout<<a+b; re…… 题解列表 2024年06月09日 0 点赞 0 评论 607 浏览 评分:6.0
编写题解 2776: A*B问题 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b; cin>>a>>b; …… 题解列表 2024年06月09日 0 点赞 0 评论 165 浏览 评分:0.0
编写题解 2751: 超级玛丽游戏 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ cout<<" ********"…… 题解列表 2024年06月09日 0 点赞 0 评论 291 浏览 评分:7.3
编写题解 2758: 打印ASCII码 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ char a; cin>>a; cout<<(int)a<…… 题解列表 2024年06月09日 0 点赞 0 评论 196 浏览 评分:9.9
2781 奇偶ASCII值判断 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ char ch; cin>>ch; if…… 题解列表 2024年06月09日 0 点赞 0 评论 170 浏览 评分:0.0
2000 偶数列举 摘要:解题思路:用if语句注意事项:注意变量参考代码:#include <iostream>using namespace std;int main(){ int a; cin>>a; f…… 题解列表 2024年06月09日 0 点赞 0 评论 218 浏览 评分:0.0
编写题解 2763: 计算(a+b)/c的值 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main( ){int a,b,c;//定义整数a,b,ccin>>a>>b>>c;/…… 题解列表 2024年06月09日 0 点赞 0 评论 561 浏览 评分:9.9
2749: Hello, World! 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ cout <<"Hello, World!"; return …… 题解列表 2024年06月09日 0 点赞 0 评论 413 浏览 评分:8.7