中国大学MOOC:"鸡兔同笼,共有98个头,386只脚,编程求鸡、兔各多少只。代码如下,按要求在空白处填写适当的表达式或语句,使程序完整并符合题目要求。 #include int main() { int x, y; for (x=1; _______; x++) { ____________; if (____________) { printf("x = %d, y = %d", x, y); } } return 0; }";
举一反三
- 鸡兔同笼,共有98个头,386只脚,编程求鸡、兔各多少只。代... y = %d, x, y); } }}
- 中国大学MOOC: 用1元5角钱人民币兑换5分、2分和1分的硬币(每一种都要有)共100枚,问共有几种兑换方案?每种方案各换多少枚?按要求在空白处填写适当的表达式或语句,使程序完整并符合题目要求。#include <stdio.h>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;}
- 鸡兔同笼,共有98个头,386只脚,编程求鸡、兔各多少只。代码如下,按要求在空白处填写适当的表达式
- 鸡兔同笼,共有98个头,386只脚,编程求鸡、兔各多少只。代..., y); } } return 0;}
- #include [stdio.h] int x,y; int f(int x){ y=x++; printf("%d",y); } int main(void){ int x=5; f(x); f(x); return 0; }