#include<stdio.h>/* 3.4
author:edcfreedom
date:2021/8/6
funDescription:
经典案例
*/intmain(){int healthYesOrNot;int handsome;int richYesOrNot;int spendMoneyForMe;printf("Would you have a healthy body?\n");scanf("%d",&healthYesOrNot);if( healthYesOrNot ==1){printf("we can become friend\n");puts("Whether or not handsome ,and rich?(tips:请输入两个整数)");scanf("%d%d",&handsome,&richYesOrNot);if(handsome ==1&& richYesOrNot ==1){printf("We still friend\n");printf("Would you willing spend money for me?\n");scanf("%d",&spendMoneyForMe);if(spendMoneyForMe ==1){printf("So, we can make xx\n");}else{printf("You are so mean,886!\n");}}else{printf("Not healthy body, and rich,don't contact with me!\n");}}else{printf("Sorry, you don't have a healthy body, we cannot become friend\n");}return0;}