首页 > 学院 > 开发设计 > 正文

a+b Problem

2019-11-08 02:38:16
字体:
来源:转载
供稿:网友

输入a与b两个数,输出a+b=xxx

样例:入:2 3

           出:2+3=5

#include<iostream>#include<cstdio>using namespace std;int main(){    int a,b;    cin>>a>>b;    PRintf("%d+%d=%d",a,b,a+b);    return 0;}


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表