• 2022-07-25
    中国大学MOOC: 用1元5角钱人民币兑换5分、2分和1分的硬币(每一种都要有)共100枚,问共有几种兑换方案?每种方案各换多少枚?按要求在空白处填写适当的表达式或语句,使程序完整并符合题目要求。#include int main(){ int x, y, z, count = 0; for (x=1; x<=29; x++) { for (y=1; y<=72; y++) { ____________; if (_____________) { count++; printf(%d, %d, %d , x, y, z); } } } printf(count = %d , count); return 0;}