1 Star 0 Fork 0

左手/c_template

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
demo003.c 272 Bytes
一键复制 编辑 原始数据 按行查看 历史
左手 提交于 2025-03-26 18:10 +08:00 . update code
/* C input (scanf) example */
#include <stdio.h>
int main(void) {
int num1, num2;
printf("Enter a number: ");
scanf("%d", &num1);
printf("Enter another: ");
scanf("%d", &num2);
printf("%d + %d = %d\n", num1, num2, (num1+num2));
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/gunhe/exercise_c.git
git@gitee.com:gunhe/exercise_c.git
gunhe
exercise_c
c_template
master

搜索帮助