Question

#include<stdio.h>
int main()
{
char ch;
printf("Enter Your State Name : ");
scanf("%c",&ch);

if(ch == 'malacca')
printf("Shipping Charge : $25");

else if(ch == 'pahang')
printf("Shipping Charge : $50");

else if(ch == 'terengganu')
printf("Shipping Charge : $65");

else
printf("The state not in purchase");

return 0;
}

Tell me what wrong

Answers

sks有目標sks
qp有内容qp

Related Questions