c语言简单篮球计分系统程序
时间: 2023-12-30 08:23:53 浏览: 149
篮球计分器C程序
4星 · 用户满意度95%
以下是一个简单的C语言篮球计分系统程序的示例:
```c
#include <stdio.h>
int main() {
int teamA_score = 0;
int teamB_score = 0;
char input;
printf("欢迎使用篮球计分系统!\n");
while (1) {
printf("\n当前比分:A队 %d - %d B队\n", teamA_score, teamB_score);
printf("请输入得分队伍(A或B):");
scanf(" %c", &input);
if (input == 'A') {
teamA_score++;
} else if (input == 'B') {
teamB_score++;
} else {
printf("无效的输入,请重新输入!\n");
continue;
}
}
return 0;
}
```
这个程序使用了一个无限循环来接收用户输入的得分队伍,并根据输入的队伍增加相应的得分。每次得分后,程序会显示当前的比分情况。用户可以通过输入'A'或'B'来增加相应队伍的得分。
阅读全文