class Exam {
public static void main(String[] args) {
//西瓜和苹果必须有,所以都从1开始
int x = 1;
int y = 1;
int count = 0;
//用西瓜作为循环数x=(200-3y)/4,苹果也行y=(200-4x)/3,取整
for (x = 1;x < 50 ;x++ ) {
//if判断他是否能全部换完
if((y = (200 - 4*x)/3)%2==0) {
count++;
System.out.println("西瓜个数 = "+ x + ",和苹果个数 = "+y);
}
}
System.out.println("一共有"+count+"种换法");
}
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) | 黑马程序员IT技术论坛 X3.2 |