c语言编写上面问题代码
时间: 2024-10-03 20:03:08 浏览: 33
用C语言发射烟花附带代码
在C语言中,你可以使用数组和循环结构来解决这个问题。首先,你需要创建两个变量分别存储投球总次数和命中的次数,然后遍历输入的数组。以下是基本的代码框架示例:
```c
#include <stdio.h>
#define MAX_TESTS 10
#define MAX_BALLS 100
void processInput(int balls[], int n) {
int total_balls = 0;
int hits = 0;
for (int i = 0; i < n; i++) {
scanf("%d", &balls[i]);
total_balls += balls[i];
if (balls[i] == 1) {
hits++;
}
}
double hit_rate = (double)hits / total_balls;
if (hit_rate > 0.75) {
printf("WWtql!\n");
} else {
printf("WWtcl!\n");
}
}
int main() {
int T;
scanf("%d", &T);
while (T--) { // 处理每一组测试
int n;
scanf("%d", &n);
int balls[MAX_BALLS]; // 初始化投球数组
for (int i = 0; i < n; i++) {
scanf("%d", &balls[i]);
}
processInput(balls, n); // 调用函数处理当前组的数据
}
return 0;
}
```
这个代码首先读取测试案例的数量T,接着对于每组数据,读取投球次数n和具体的投球结果,然后通过`processInput`函数计算命中率并输出相应结果。
阅读全文