Anonymous 发表于 2024-1-9 09:48:37

为什么可以运行但结果不对?

#include <stdio.h>

int main() {
    int N = 10;
    int scores;
    printf("请输入10个学生的分数:\n");
    for (int N = 0; N < 10; N++) {
      scanf("%d", &scores);
    }
//计算平均分
    double average = 0.0;
    for (int N = 0; N < 10; N++) {
      average += scores;
    }
    average /= 10;
//寻找最高分和最低分
    int max_score = scores;
    int min_score = scores;
    for (int i = 1; i < 10; i++) {
      if (scores > max_score) {
            max_score = scores;
      }
      if (scores < min_score) {
            min_score = scores;
      }
    }

    printf("平均分:%.2f\n", average);
    printf("最高分:%d\n", max_score);
    printf("最低分:%d\n", min_score);
    return 0;
}

liyifeng295641 发表于 2024-1-9 09:48:38

心虚 发表于 2024-1-9 11:13
c++,6.0结果不对

换个编译器试试呢。

FishC 发表于 2024-1-9 09:48:55

问题出在这里:

int scores;
printf("请输入10个学生的分数:\n");
for (int N = 0; N < 10; N++) {
    scanf("%d", &scores);
}

在每次循环中,你都是将输入的分数存储到同一个变量 `scores` 中。所以在后面计算平均分、寻找最高分和最低分时,你使用的都是最后一次输入的分数。因此,你需要创建一个数组来存储每个学生的分数。这样你就可以在后面的计算中使用正确的数据了。

修改后的代码如下:

#include

int main() {
    int N = 10;
    int scores;
    printf("请输入10个学生的分数:\n");
    for (int i = 0; i < 10; i++) {
      scanf("%d", &scores);
    }
   
    // 计算平均分
    double average = 0.0;
    for (int i = 0; i < 10; i++) {
      average += scores;
    }
    average /= 10;
   
    // 寻找最高分和最低分
    int max_score = scores;
    int min_score = scores;
    for (int i = 1; i < 10; i++) {
      if (scores > max_score) {
            max_score = scores;
      }
      if (scores < min_score) {
            min_score = scores;
      }
    }

    printf("平均分:%.2f\n", average);
    printf("最高分:%d\n", max_score);
    printf("最低分:%d\n", min_score);
   
    return 0;
}

我在原来的代码中进行了一些修改:

- 创建一个 `int` 数组 `scores` 来存储每个学生的分数。
- 在循环中使用索引变量 `i` 来访问数组中的元素,将每次输入的分数存储到不同的位置上。
- 在计算平均分、寻找最高分和最低分时,使用 `scores` 来访问数组中的元素。
- 在寻找最高分和最低分时,我将初始值设置为第一个学生的分数 `scores`。

这样,你将得到正确的结果。

以上回复来自 FishC AI 小助理,如未能正确解答您的问题,请继续追问。

liyifeng295641 发表于 2024-1-9 09:55:45

把你的代码贴在vim里
#include <stdio.h>

int main() {
    int N = 10;
    int scores;
    printf("请输入10个学生的分数:\n");
    for (int N = 0; N < 10; N++) {
      scanf("%d", &scores);
    }
//计算平均分
    double average = 0.0;
    for (int N = 0; N < 10; N++) {
      average += scores;
    }
    average /= 10;
//寻找最高分和最低分
    int max_score = scores;
    int min_score = scores;
    for (int i = 1; i < 10; i++) {
      if (scores > max_score) {
            max_score = scores;
      }
      if (scores < min_score) {
            min_score = scores;
      }
    }

    printf("平均分:%.2f\n", average);
    printf("最高分:%d\n", max_score);
    printf("最低分:%d\n", min_score);
    return 0;
}

我运行结果:
请输入10个学生的分数:
12 23 12 56 78 56 89 56 45 34
平均分:46.10
最高分:89
最低分:12

哪里不对a

心虚 发表于 2024-1-9 11:13:23

liyifeng295641 发表于 2024-1-9 09:55
把你的代码贴在vim里




c++,6.0结果不对

-kasha 发表于 2024-1-9 13:07:32

原代码放在dec++ 运行好像也没什么错呀
请输入10个学生的分数:
1 2 3 4 5 6 7 8 9 10
平均分:5.50
最高分:10
最低分:1

鞋得烩 发表于 2024-1-9 16:58:37

心虚 发表于 2024-1-9 11:13
c++,6.0结果不对

换个编译器试试
页: [1]
查看完整版本: 为什么可以运行但结果不对?