-1
次のコードがありますが、センチネル番号を1回入力した後に壊れてしまいますが、その時点でセンチネル番号を2回入力する必要があります。何か案は?cのセンチネルループ実行
#include <stdio.h>// Include a standard C Library
#define Sentinel_Numb -1
int main(){
int ID[360];
float seconds[360];
int i = 0;
printf("please enter the ID and how many seconds to calculate enter -1 when done\n");
while (1)
{
scanf_s("%d",&ID[i]);
scanf_s("%f",&seconds[i]);
if(ID[i] == Sentinel_Numb || seconds[i] == Sentinel_Numb){
break;
}
i++;
}
return 0;
}
? – yano
コンパイルされません。 "i"は定義されていません。 – TonyB
申し訳ありませんが、私は – drez