ครูให้ทำโปรแกรมภาษาซีค่ะ แต่ให้ใส่คำสั่งloopingลงไปด้วย
ซึ่งเราไม่เข้าใจเลย เราลองใส่โค้ดเข้าไปปรากฏว่าคอมพายไม่ผ่านค่ะ
เลยมาถามค่ะว่าค้องใส่โค้ดอะไรลงไป
ที่เราต้องการคือ พอคำนวณเสร็จให้แสดงคำตอบ
แล้วแสงข้อความว่า Do you want to calculate?
ถ้าพิมพ์ no ก็ปิดโปรแกรม ถ้าพิมพ์ yes ก็คำนวณใหม่
มันสามารถทำได้มั้ยคะ เราใช้โปรแกรมdev c++ค่ะ ครูให้ใช้ตัวนี้
นี่คือโค้ดโปรแกรมเราค่ะ เป็นการคำนวณภาษีเงินได้บุคคลธรรมดา
แต่ยังไม่ใส่คำสั่งloopingนะคะ
#include<stdio.h>
#include<conio.h>
main()
{
printf(" *****************\n");
printf(" Tax Calculation\n");
printf(" *****************\n");
printf("\n");
int income;
printf("Enter your income: ");
scanf("%d",&income);
if(income<=150000)
{
printf("You have to pay tax : %d" ,income*0/100);
}
else if (income>150000&income<=300000)
{
printf("You have to pay tax : %d",income*5/100);
}
else if (income>300000&income<=500000)
{
printf("You have to pay tax : %d",income*10/100);
}
else if (income>500000&income<=750000)
{
printf("You have to pay tax : %d",income*15/100);
}
else if (income>750000&income<=1000000)
{
printf("You have to pay tax : %d",income*20/100);
}
else if (income>1000000&income<=2000000)
{
printf("You have to pay tax : %d",income*25/100);
}
else if (income>2000000&income<=4000000)
{
printf("You have to pay tax : %d",income*30/100);
}
else if (income>4000000)
{
printf("You have to pay tax : %d",income*35/100);
}
getch();
}
ช่วยเราหน่อยนะคะ ขอบคุณมากค่ะ
ภาษาc การทำเขียนคำสั่งcontinue
ซึ่งเราไม่เข้าใจเลย เราลองใส่โค้ดเข้าไปปรากฏว่าคอมพายไม่ผ่านค่ะ
เลยมาถามค่ะว่าค้องใส่โค้ดอะไรลงไป
ที่เราต้องการคือ พอคำนวณเสร็จให้แสดงคำตอบ
แล้วแสงข้อความว่า Do you want to calculate?
ถ้าพิมพ์ no ก็ปิดโปรแกรม ถ้าพิมพ์ yes ก็คำนวณใหม่
มันสามารถทำได้มั้ยคะ เราใช้โปรแกรมdev c++ค่ะ ครูให้ใช้ตัวนี้
นี่คือโค้ดโปรแกรมเราค่ะ เป็นการคำนวณภาษีเงินได้บุคคลธรรมดา
แต่ยังไม่ใส่คำสั่งloopingนะคะ
#include<stdio.h>
#include<conio.h>
main()
{
printf(" *****************\n");
printf(" Tax Calculation\n");
printf(" *****************\n");
printf("\n");
int income;
printf("Enter your income: ");
scanf("%d",&income);
if(income<=150000)
{
printf("You have to pay tax : %d" ,income*0/100);
}
else if (income>150000&income<=300000)
{
printf("You have to pay tax : %d",income*5/100);
}
else if (income>300000&income<=500000)
{
printf("You have to pay tax : %d",income*10/100);
}
else if (income>500000&income<=750000)
{
printf("You have to pay tax : %d",income*15/100);
}
else if (income>750000&income<=1000000)
{
printf("You have to pay tax : %d",income*20/100);
}
else if (income>1000000&income<=2000000)
{
printf("You have to pay tax : %d",income*25/100);
}
else if (income>2000000&income<=4000000)
{
printf("You have to pay tax : %d",income*30/100);
}
else if (income>4000000)
{
printf("You have to pay tax : %d",income*35/100);
}
getch();
}
ช่วยเราหน่อยนะคะ ขอบคุณมากค่ะ