0

この C コードを HLA に変換する際に問題が発生しました。誰か助けていただけないでしょうか。私のコードの目的は、ユーザーに 10 進数の値を繰り返し要求することです。そして最後に、プログラムは入力されたすべての数値の合計を読み取る必要があります。

bool keepGoing;
int goal = O, total = 0, j = 0;
keepGoing = true;

printf("Feed Me: ");
scanf("%d", &goal);

total = goal;

while (keepGoing) {
    scanf("%d", &j);

    if (j >= goal)
        keepGoing = false;

    total += j;
    goal = j;
}

printf("Your total is %d\n", total);
4

1 に答える 1