#include<stdio.h>int main(){ int money = 100; int price = 120; printf("我们买不买呢:"); printf("%s\n",price<=money?'yes':'no'); return 0;} 查看完整描述