为什么scanf在一开始就要求输入?

时间:2015-12-18 23:28:38

标签: c scanf

我有一个非常简单的程序,只需要一个重量并将其转换为铂金值。我是C的新手,所以错误可能在任何地方。但是当我使用scanf时,它会在一开始就要求输入,而不是遵循代码序列:

代码:

 #include <stdio.h>
 int main(void)
 {
     float weight;
     float value;

     printf("Are you worth your weight in platinum?\n");
     printf("Let's check it out.\n");
     printf("Please enter your weight in pounds: ");
     scanf("%f", &weight);
     printf("%.2f\n", weight);
     value = 1700.0 * weight * 14.5833;
     printf("Your weight in platinum is worth $%.2f.\n", value);
     printf("You are easily worth that! If platinum prices drop,\n");
     printf("eat more to maintain your value.\n");

     return 0;

 }

输出:

123
Are you worth your weight in platinum?
Let's check it out.
Please enter your weight in pounds: 123.00
Your weight in platinum is worth $3049368.00.
You are easily worth that! If platinum prices drop,
eat more to maintain your value.

如果您在输出中注意到用户必须在打印第一行之前输入输入。这是为什么?

1 个答案:

答案 0 :(得分:5)

我尝试了你的程序,它可以按照你的意愿运行。在扫描输入之前,您可能会尝试刷新<div id="downarrow"> <img class="arrow" src="https://upload.wikimedia.org/wikipedia/en/f/f1/Down_Arrow_Icon.png"> </div>缓冲区。

stdout

操作系统可以自由推迟写入输出缓冲区以提高效率。因此,例如,您一次以块为单位而不是一个字符写入磁盘。 fflush强制写入缓冲区。它&#34; endl&#34;在C ++和fflush是直接的c版本。我不确定你所看到的是什么。