以前に他のプログラムをコンパイルしたことがありますが、何らかの理由で作業できなくなりました。私はMacを持っていますこれが私のコードです。その目的は、3 つの数値を取り、平均を見つけることです。
#include <stdio.h>
int main(){
int first;
int second;
int third;
float average=0.0;
printf ("This program will find the average of 3 numbers.\n");
delay(1000);
printf ("Type the first number.\n");
scanf ("%d", &first);
printf ("Type the second number.\n");
scanf ("%d", &second);
printf ("Type the third number.\n");
scanf ("%d", &third);
average = (first+second+third)/2.0;
printf ("The average of %d, %d, and %d is %.3f\n", first, second, third, average);
return (0);
}
これらは私が取ったステップです。デスクトップに average.c と average.h を置きます。ターミナルを開いて入力します
cd Desktop
gcc /Users/reneelion/Desktop/average.c average
次に、次のように述べています。
average: No such file or directory.
私はコーディングの初心者で、何をすべきかわかりません。