ALGO-123_蓝桥杯_算法训练_A+B problem

Posted WooKinson

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ALGO-123_蓝桥杯_算法训练_A+B problem相关的知识,希望对你有一定的参考价值。

问题描述
  Given two integers A and B, your task is to output their sum, A+B.
输入格式
  The input contains of only one line, consisting of two integers A and B. (0 ≤ A,B ≤ 1 000)
输出格式
  The output should contain only one number that is A+B.
样例输入
1 1
样例输出
2

 

AC代码:

1 #include <stdio.h>
2 
3 int main(void)
4 {
5     int a,b;
6     scanf("%d %d",&a,&b);
7     printf("%d",a+b);
8     return 0;
9 }

 

以上是关于ALGO-123_蓝桥杯_算法训练_A+B problem的主要内容,如果未能解决你的问题,请参考以下文章

蓝桥杯_算法训练_字串统计

ALGO-39_蓝桥杯_算法训练_数组排序去重

蓝桥杯_算法训练_关联矩阵

ALGO-145_蓝桥杯_算法训练_4-1打印下述图形

ALGO-115_蓝桥杯_算法训练_和为T(枚举)

ALGO-139_蓝桥杯_算法训练_s01串(递归)