列表

详情


BC21. 牛牛学加法

描述

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


输入描述

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

输出描述

输出一个整数.

示例1

输入:

1 2

输出:

3

原站题解

C 解法, 执行用时: 1ms, 内存消耗: 192KB, 提交时间: 2022-07-26

int main()
{
    int a,b;
    0<=a,b<=1000;
    scanf("%d %d",&a,&b);
    printf("%d",a+b);
    return 0;
}

C 解法, 执行用时: 1ms, 内存消耗: 192KB, 提交时间: 2022-03-19

#include<stdio.h>
int main(){
    int a,b;
    scanf("%d %d",&a,&b);
    printf("%d",a+b);
    
}

C 解法, 执行用时: 1ms, 内存消耗: 308KB, 提交时间: 2022-03-12

#include <stdio.h>
int main(){
    int a,b;
    scanf("%d%d",&a,&b);
    if(a>=0&&b<=1000){
        printf("%d",a+b);
        
}
    return 0;
}

C 解法, 执行用时: 2ms, 内存消耗: 180KB, 提交时间: 2022-03-26

#include<stdio.h>
int main()
{
    int a,b,sum;
    scanf("%d %d",&a,&b);
    sum=a+b;
    printf("%d",sum);
    
    return 0;
}

C 解法, 执行用时: 2ms, 内存消耗: 180KB, 提交时间: 2022-03-11

#include <stdio.h>
int main()
{
    int a,b,c;
    scanf("%d%d",&a,&b);
    c=a+b;
    printf("%d",c);
    return 0;
}

上一题