编程语言
首页 > 编程语言> > java算术题

java算术题

作者:互联网

public class jitu {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		// TODO Auto-generated method stub
			for(int a = 0; a <= 29; a++){
				for(int b =0; b <= 29;b++){
					if(a+b==30&&a*2+b*4==90){
						System.out.println("鸡有"+a+"只,"+"兔子有"+b+"只");
					}
				}
			}

	}
}

标签:java,算术题,args,public,投诉,李白,提壶,农夫
来源: https://blog.csdn.net/qq_17632129/article/details/104904561