我刚开始学习使用 edX 编写 C 语言,我确信这是一个非常简单的错误,我无法发现。
我得到了一个额外的 ./ ,我不知道它是从哪里来的。
这就是我得到的输出
How many minutes does your shower last: 3
minutes: 3
bottles: 36./
我在 Cloud 9 上使用 CS50 IDE,我的代码在屏幕截图中
感谢您的帮助。
这是我的代码:
int main(void)
{
int showerlength, bottle;
printf("How many minutes does your shower last: ");
scanf("%d", &showerlength);
bottle = (showerlength * 12);
printf("minutes: %d\n",showerlength );
printf("bottles: %d\n",bottle );
}
这是我得到的输出
~/workspace/pset1/ $ ./water
How many minutes does your shower last: 3
minutes: 3
bottles: 36./