0
点赞
收藏
分享

微信扫一扫

2065:【例2.2】整数的和

云卷云舒xj 2022-03-12 阅读 29
c++

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

举报

相关推荐

0 条评论