已攻克43道,持续更新(有我没过,你们过了的,求共享思路)...

BEGIN-1(A+B问题)

#include<cstdio>
int main()
{
    int a,b;//-10000 <= A, B <= 10000
    scanf("%d%d",&a,&b);//scanf(),printf()的int型输入输出
    printf("%d\n",a+b);
    return 0;
}
View Code

相关文章:

  • 2021-12-06
  • 2021-12-27
  • 2021-12-14
  • 2021-08-30
  • 2022-01-06
  • 2022-01-14
  • 2021-07-21
  • 2021-10-02
猜你喜欢
  • 2022-12-23
  • 2021-12-25
  • 2021-10-29
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案