首页 > 试题广场 >

牛牛学加法

[编程题]牛牛学加法
  • 热度指数:19315 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 32M,其他语言64M
  • 算法知识视频讲解

给你两个整数,要求输出这两个整数的和



输入描述:
输入两个整数 a, b (0 <= a, b <= 1000)


输出描述:
输出一个整数.
示例1

输入

1 2

输出

3
头像 limingyang
发表于 2020-03-21 11:16:35
我来搞事情了ヘ(´ー`ヘ) 这道题是一道简单题,但你可以像我一样自由地发挥以下提供三种趣味十足(画蛇添足)的做法①DP解法是的,你没看错,这可能是一道DP题目!先推出所有加法计算的和,然后就可以O(1)时间输出!!!幸好a和b都<=1000等等,貌似不这样做也是O(1)呀…… #include 展开全文
头像 张田懿
发表于 2020-12-08 10:39:22
include<bits/stdc++.h> using namespace std;int main(){ int a,b,c; cin>>a>>b; c=a+b; cout<<c; return 0;}
头像 金龙月轩寰语唐舞麟
发表于 2020-12-08 10:38:02
很简单 代码如下 #include <bits/stdc++.h> using namespace std; int main() { int a, b, s; cin >> a >> b; s = a + b; cout << s; return 0 展开全文
头像 云小逸0987
发表于 2022-04-28 15:57:41
描述 给你两个整数,要求输出这两个整数的和 输入描述: 输入两个整数 a, b (0 <= a, b <= 1000) 输出描述: 输出一个整数. 思路: 输入两个数之间要空格号,注意题目要求!!! ">int main(void) { int a=0,b=0; scan 展开全文
头像 牛客645304895号
发表于 2022-04-05 14:22:14
public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int a = scanner.nextInt(); 展开全文
头像 老6
发表于 2022-04-22 16:15:50
#include <stdio.h> int main(){     int a,b;     scanf("%d%d",&a,&b);     printf("%d",a+b);     r 展开全文
头像 不错就是对
发表于 2022-03-24 10:01:02
BC21 牛牛学加法 思路: step1:输入a和b; step2:相加输出; 代码如下: a,b = list(map(int,input().split())) print(a+b)
头像 一只咖啡君
发表于 2022-11-19 09:34:58
#include <stdio.h> int main() { int a, b; scanf("%d %d", &a, &b); printf("%d", a + b); return 0; }
头像 QAQ天战QAQ
发表于 2020-01-12 23:21:56
简单#include <stdio.h>int main() { int a,b; while(scanf("%d %d",&a, &b) != EOF) printf("%d",a+b); return 0;}
头像 牛客517072235号
发表于 2020-04-18 17:31:56
#include<iostream> using namespace std; int main() { int a, b; cin>>a>>b; cout<<a+b; return 0; }cin/cout可以连续输入 展开全文

问题信息

上传者:牛客301599号
难度:
58条回答 2162浏览

热门推荐

通过挑战的用户

查看代码
牛牛学加法