题解 1267: A+B Problem 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int x,y; cin>>x>>y; int a=…… 题解列表 2022年10月06日 0 点赞 0 评论 650 浏览 评分:9.9
编写题解 1267: A+B Problem 摘要:解题思路:设定一个整数“a”和“b”参考代码:#includeusing namespace std;int main(){ int a; int b; cin>>a>>b; …… 题解列表 2023年12月02日 0 点赞 0 评论 189 浏览 评分:9.9
P1000 3行结束 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d%d", &a, &b); printf("%d\n",a+b)…… 题解列表 2021年10月10日 0 点赞 0 评论 954 浏览 评分:9.9
【Java】计算两个数的和 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[]args)…… 题解列表 2023年12月10日 0 点赞 0 评论 491 浏览 评分:9.9
这么简单的题还属于中档题? 摘要:解题思路:基本操作注意事项:这有什么注意的,直接五星好评参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d %d",&a,&b); …… 题解列表 2022年11月09日 0 点赞 0 评论 914 浏览 评分:9.9
A+B Problem(python) 摘要:解题思路:这题很简单,用map()函数输入两个值再直接相加即可注意事项:参考代码:x,y=map(int,input().split())print(x+y)…… 题解列表 2023年06月09日 0 点赞 0 评论 689 浏览 评分:9.9
题解 1267: A+B Problem 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2024年01月18日 0 点赞 0 评论 338 浏览 评分:9.9
A+B python题解 摘要:解题思路:注意事项:参考代码:a,b = map(int,input().split())print(a+b)//说什么内容字数太少,本来以为会考什么数字太长需要用到数组啥的,没想到这么简单…… 题解列表 2023年11月03日 0 点赞 0 评论 324 浏览 评分:9.9
好好考哈回家后即可交话费 摘要:解题思路:注意事项:参考代码:while True: try: a,b=map(int,input().strip().split()) print(a+b) except: break…… 题解列表 2024年07月09日 0 点赞 0 评论 184 浏览 评分:9.9
1267: A+B Problem题解 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; cout<<a+b…… 题解列表 2024年12月01日 1 点赞 0 评论 123 浏览 评分:9.9