私は C のクラスを取っていますが、あまり得意ではないので、「Id が 1 つの終了ステータスを返しました」という問題を解決するにはどうすればよいか、お尋ねしたいと思います。その間、私は本当にあなたの助けに感謝します.
#include <stdio.h>
#include<conio.h>
#include<windows.h>
int main()
{
int P, N, NP=0;
printf("Introduzca en nombre del producto:\n");
scanf("%f", &N);
printf("Introduzca en precio del producto:\n");
scanf("%f", &P);
if (P <= 1500)
NP=P*1.11;
else
NP=P*1.08;
printf("El producto %d cuesta %d", NP, N);
getche();
return 0;
}
エラーの完全なリストは次のとおりです。
Permission denied
Id returned 1 exit status