练习:if语句运用
Posted fzhiyaoy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了练习:if语句运用相关的知识,希望对你有一定的参考价值。
#include <stdio.h>
#include <string.h>
#include <string.h>
//练习:需购买一物品,价格1000元,有一下几个条件
//1、有体验卡可免费使用,0元;
//2、5折的折扣卷,500元;
//3、会员卡可优惠9折;900元;
int main(void)
{
char answer[8]; //编写时需注意数组形式,否则会出问题
printf("请问你有体验卡吗?[Yes|No] ");
scanf("%s",&answer);
if (strcmp(answer,"yes") == 0){
printf("这个物品你可以免费带回体验! ");
//printf加括号
//scanf("%s",answer)
}else if (printf("请问你有打5折的折扣卷吗?[yes|no] ") && scanf("%s",answer) &&
strcmp(answer,"yes") == 0){
printf("这个物品打折后价格为500元。 ");
}else if (printf("请问你有会员卡吗?可以打九折 [yes|no] ") && scanf("%s",answer) &&
strcmp(answer,"yes")== 0){
printf("会员卡优惠后的价格为900元。 ");
}
return 0;
}
//1、有体验卡可免费使用,0元;
//2、5折的折扣卷,500元;
//3、会员卡可优惠9折;900元;
int main(void)
{
char answer[8]; //编写时需注意数组形式,否则会出问题
printf("请问你有体验卡吗?[Yes|No] ");
scanf("%s",&answer);
if (strcmp(answer,"yes") == 0){
printf("这个物品你可以免费带回体验! ");
//printf加括号
//scanf("%s",answer)
}else if (printf("请问你有打5折的折扣卷吗?[yes|no] ") && scanf("%s",answer) &&
strcmp(answer,"yes") == 0){
printf("这个物品打折后价格为500元。 ");
}else if (printf("请问你有会员卡吗?可以打九折 [yes|no] ") && scanf("%s",answer) &&
strcmp(answer,"yes")== 0){
printf("会员卡优惠后的价格为900元。 ");
}
return 0;
}
以上是关于练习:if语句运用的主要内容,如果未能解决你的问题,请参考以下文章
选择结构练习题(if语句if else语句switch语句)
选择结构练习题(if语句if else语句switch语句)
选择结构练习题(if语句if else语句switch语句)