私は 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./