0
点赞
收藏
分享

微信扫一扫

签到第二天

新鲜小饼干 2022-03-11 阅读 55
c语言

/*作者:孙珺

  学号:2021114021

  功能:求和*/

#include <stdio.h>

 

int main() {

 int a, b, d; //定义3个变量

 d = 0;

 printf("please input 2 numbers:a,b\n");

 scanf("%d,%d", &a, &b);

 d = a + b;

 printf("sum is %d\n", d);

 

 return 0;

}

举报

相关推荐

RHCSA第二天

CSS第二天

html第二天

出差第二天

MySQL第二天

集合第二天

java第二天

DOM第二天

JavaSE 第二天

【JavaSE 第二天】

0 条评论