John、Sally和Tom练打字,请用c语言编写程序,输入三人的打字数量,计算总数量,并输出表格
时间: 2024-10-14 17:10:48 浏览: 130
cJSON源程序,c语言编写的JSON解码器
在C语言中,我们可以创建一个简单的控制台程序来处理这个情况。假设我们已经有了三个变量分别存储John、Sally和Tom的打字数量,可以这样做:
```c
#include <stdio.h>
int main() {
int john_count, sally_count, tom_count;
// 输入每个人的打字数量
printf("请输入John的打字数量: ");
scanf("%d", &john_count);
printf("请输入Sally的打字数量: ");
scanf("%d", &sally_count);
printf("请输入Tom的打字数量: ");
scanf("%d", &tom_count);
// 计算总数量
int total_count = john_count + sally_count + tom_count;
// 输出结果
printf("姓名\t打字数量\n");
printf("John\t%d\n", john_count);
printf("Sally\t%d\n", sally_count);
printf("Tom\t%d\n", tom_count);
printf("\n总共有 %d 个字符被输入。\n", total_count);
return 0;
}
```
运行此程序时,用户需要依次输入每个人打字的数量,然后它会展示出每个用户的数量以及总和。请注意,在实际应用中,你可能会需要更完善的错误检查和用户界面设计。
阅读全文