零起点学算法08——简单的输入和计算(a+b)

2021-06-29 14:05

阅读:643

标签:col   return   class   can   std   bsp   scanf   stdio.h   pre   

#include int main()
{
    int a;
    int b;
    scanf("%d %d",&a,&b);
    printf("%d",a+b);
    return 0;
}
#include int main()
{
    int a,b;
    scanf("%d",&a);
    scanf("%d",&b);
    printf("%d",a+b);
    return 0;
}

 

零起点学算法08——简单的输入和计算(a+b)

标签:col   return   class   can   std   bsp   scanf   stdio.h   pre   

原文地址:https://www.cnblogs.com/chenlong991223/p/9645907.html


评论


亲,登录后才可以留言!