printf("%c\n", money>=cost ? "y" : "n")
把"y" "n"换成‘y' 'n'就可以了?
后面如果是双引号前面就不能用%c 得用%s (%c -> '' %s -> """")