1

以前に他のプログラムをコンパイルしたことがありますが、何らかの理由で作業できなくなりました。私は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.

私はコーディングの初心者で、何をすべきかわかりません。

4

3 に答える 3

9

出力ファイルを次のようにしたいと思いますaverageか?次に、これを使用します。

gcc average.c -o average
于 2013-07-22T16:27:46.010 に答える