洛谷P1001 A+B Problem
·前言
第一篇博客(emmm…),选择了接触Code的第一道题《A + B Problem》。
A+B Problem 作为语法基础第一题,是大家走上并放弃享受Coding的枯燥乐趣的第一道题。
·分析
说起分析这道题,作为语法基础题,并没有过多可以分析的东西,题目的要求呢,是 输入两个整数a,b,输出它们的和(|a|,|b|<=10^9) ,由于 |a|,|b|<=10^9 ,所以很轻松的使用 int 型变量来进行读入和计算即可。
所以选择 a,b 读入,最后在输出 a+b 即可。
·代码
C++:
#include <iostream> #include <algorithm> #include <cstdio> using namespace std; int main() { int a,b; cin>>a>>b; cout<<a+b<<endl; return 0; }
C:
#include <stdio.h> int main() { int a,b; scanf("%d%d",&a,&b); printf("%d",a+b); return 0; }
·OVER
祝愿大家在Coding的路上越走越远。
——LittleSeven