- คือไม่ค่อยเข้าใจกับตัวอย่างโค้นนี้อ่ะค่ะ ช่วยอธิบายให้หน่อยนะค่ะ
- แล้วก็ช่วยบอกตัวอย่างการรันให้ด้วยนะค่ะ
** ขอบคุณค่ะ ***
#include<stdio.h>
void main()
{
int unit ;
float eletric ;
printf ("input unit :");
scanf("%d",&unit);
if (unit<=5)
{ eletric = 4.96 ;}
else if (unit<=15)
{ eletric = unit * 0.7124; }
else if (unit<=25)
{ eletric = unit * 0.8993; }
else if (unit<=35)
{ eletric = unit * 1.1516; }
else if (unit<=100)
{ eletric = unit * 1.5348; }
else if (unit<=150)
{ eletric = unit * 1.6282; }
else if (unit<=400)
{ eletric = unit * 2.1329; }
else
{ eletric = unit *2.4226; }
printf(" unit = %d ,eletric = %f", unit, eletric);
}
ข่วยอธิบายการเขียนโค้สภาษาซีหน่อยนะค่ะ
- แล้วก็ช่วยบอกตัวอย่างการรันให้ด้วยนะค่ะ
** ขอบคุณค่ะ ***
#include<stdio.h>
void main()
{
int unit ;
float eletric ;
printf ("input unit :");
scanf("%d",&unit);
if (unit<=5)
{ eletric = 4.96 ;}
else if (unit<=15)
{ eletric = unit * 0.7124; }
else if (unit<=25)
{ eletric = unit * 0.8993; }
else if (unit<=35)
{ eletric = unit * 1.1516; }
else if (unit<=100)
{ eletric = unit * 1.5348; }
else if (unit<=150)
{ eletric = unit * 1.6282; }
else if (unit<=400)
{ eletric = unit * 2.1329; }
else
{ eletric = unit *2.4226; }
printf(" unit = %d ,eletric = %f", unit, eletric);
}