java--study||O.o 摘要:参考代码:import java.util.*; public class Main{ public static void main(String[] args){ …… 题解列表 2024年05月11日 0 点赞 0 评论 111 浏览 评分:0.0
[竞赛入门]简单的a+b(C++) 摘要:解题思路:定义a,b,输入各值,输出a+b就可以了注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; …… 题解列表 2024年07月29日 0 点赞 0 评论 105 浏览 评分:0.0
Java简单的a+b 摘要:Scanner sc=new Scanner(System.in); while(sc.hasNext()){ int a=sc.nextInt(); int b=sc.nextInt(); …… 题解列表 2024年08月10日 0 点赞 0 评论 165 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b)cout…… 题解列表 2024年09月01日 0 点赞 0 评论 168 浏览 评分:0.0
佷简单,C++代码 摘要:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b)cout<<(a+b)<<e…… 题解列表 2024年09月24日 0 点赞 2 评论 138 浏览 评分:3.4
C++[竞赛入门]简单的a+b题解 摘要:题目答案: ```cpp #include using namespace std; int main() { int a,b; while(cin>>a>>b)cout…… 题解列表 2024年11月04日 0 点赞 0 评论 104 浏览 评分:0.0
a+b简单写法 摘要:解题思路:用if限定范围不超过2^10,或者排除2^10之外的数,然后进行简单的加减注意事项:参考代码:#include<stdio.h>int main(){ int a,b; whil…… 题解列表 2024年11月05日 1 点赞 0 评论 263 浏览 评分:9.9
详细解释,成为高手第一步 摘要:解题思路:注意事项:参考代码:#include <stdio.h> //这是引入标准输入输出库,因为我们要使用 scanf 和 printf 函数。int main() { …… 题解列表 2024年11月19日 3 点赞 0 评论 210 浏览 评分:0.0
a+b so easy [竞赛入门]简单的a+b 摘要:```cpp #include using namespace std; int main(){ int a,b; while(cin>>a>>b)cout…… 题解列表 2024年11月28日 4 点赞 0 评论 282 浏览 评分:6.0
编写题解 1000: [竞赛入门]简单的a+b 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b) …… 题解列表 2024年12月01日 3 点赞 0 评论 353 浏览 评分:9.9