ช่วยหนูด้วย ToT (แง)
เรื่องมีอยู่ว่า หนูเขียนโค๊ตเสร็จแล้วคะ ตรวจ แล้วก็ไม่ เออเร่อนะคะ พอ run มันก็จะมีให้เรากรอกอะไรๆ ตามที่เรากำหนดอ่ะคะ พอกรอกตัวเลขที่โปรแกรมจะเอาไปคำนวณแล้ว หนูก็กด enter ปรากฎว่า..??!! มันหายไปเลยคะ.... หน้าต่างมันหายไปเลยเหมือนเราทำทุกอย่างเสร็จแล้ว ทั้งๆที่ยังไม่เห็นผลลัพเลย งงค่ะ
บางครั้งหนูต้องลองกด enter เบาๆอย่างใจเย็นบางทีมันก็ได้นะ เป็นเพราะ keyboard บ้านหนูเสียหรอ ทำใ ห้ไปกด enter 2 ครั้ง หนูว่าก็ไม่ใช่ เพราะไปที่ ไหนก็เป็นแบบนี้ เป็นเพราะโค๊ตรึเปล่า ก็ไม่แน่ใจอะคะ ช่วยดูให้หน่อยคะ
ป.ล.ช่วยติชมโคตด้วยหนูเพิ่งหัดเขียนค่ะ ป.ป.ล เด็ก สศ. ที่เข้ามาดูกระู้ทู้นี้ ขอบอกโค๊ตนี้ห้ามลอกค่ะ
#include<stdio.h> #include<conio.h> void main()
{ float d; char a,b,c;
printf("Find the purity income (the tax is 15 percent/year)\n");
printf("Enter your number:\n"); scanf("%s",&a);
printf("Enter your name:\n"); scanf("%s",&b);
printf("Enter your lastname:\n"); scanf("%s",&c);
printf("Enter your income in a day:\n"); scanf("%f",&d);
{
if (0<=d,d<=274) printf("you must paid tax 5 percent/year \nso your purity income in a year is =%.2f",d*365 - d*365*5/100);
else if (274<d,d<=1370) printf("you must paid tax 10 percent/year \nso your purity income in a year is =%.2f",d*365 - d*365*10/100);
else if (d>1370) printf("you must paid tax 20 percent/year \nso your purity income in a year is =%.2f",d*365 - d*365*20/100 );
else printf("sorry you did't pass please try again");
}
}
จบแล้วค่ะ(เย้)
|