คือผมทำโปรเจคส่งอาจารย์ แต่ติดที่มันไม่ทำตามเงื่อนไข if ครับมันผิดตรงไหนหรือมีข้อบกพร่องตรงจุดไหนช่วยชี้แนะด้วยครับ ขอบคุณครับ
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int money;
float answers;
char currency[4];
printf("Enter Thai Baht:");
scanf("%d",&money);
printf("Enter Currency:");
scanf("%s",currency);
if(currency=="JPY"||currency=="jpy")
{
answers=money*3.166061;
printf("japanese Yen: %.2f",answers);
}
else if(currency=="EUR"||currency=="eur")
{
answers=money*0.023423;
printf("Euro: %.2f",answers);
}
else if(currency=="GBP"||currency=="gbp")
{
answers=money*0.018445;
printf("Pound Sterling: %.2f",answers);
}
else
printf("ERROR");
getch();
}
ใครพอจะเป็นภาษาซีบ้างครับ ช่วยผมหน่อยครับ
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int money;
float answers;
char currency[4];
printf("Enter Thai Baht:");
scanf("%d",&money);
printf("Enter Currency:");
scanf("%s",currency);
if(currency=="JPY"||currency=="jpy")
{
answers=money*3.166061;
printf("japanese Yen: %.2f",answers);
}
else if(currency=="EUR"||currency=="eur")
{
answers=money*0.023423;
printf("Euro: %.2f",answers);
}
else if(currency=="GBP"||currency=="gbp")
{
answers=money*0.018445;
printf("Pound Sterling: %.2f",answers);
}
else
printf("ERROR");
getch();
}