john、sally和tom练打字请编写程序输入三人的打字数量,计算总数量并输出表格
时间: 2024-10-17 22:15:47 浏览: 64
为了编写这个程序,我们可以使用C语言的基本结构来接收用户输入,并计算总打字数量。同时,我们可以使用控制台打印输出一个简单的表格来显示数据。以下是一个基本的示例程序:
```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("\n打字数量统计:\n");
printf("姓名\t打字数量\n");
printf("-----\t---------\n");
printf("John\t%d\n", john_count);
printf("Sally\t%d\n", sally_count);
printf("Tom\t\t%d\n", tom_count);
printf("总共\t\t%d\n", total_count);
return 0;
}
```
当你运行这个程序时,用户会被提示输入每个人的打字数量。然后,程序会计算总数并在终端上显示一个简单的表格。
阅读全文