日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

第一次JAVA作业(ZLY)

發布時間:2023/12/18 编程问答 27 豆豆
生活随笔 收集整理的這篇文章主要介紹了 第一次JAVA作业(ZLY) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

package org.westos.www;
/*
1.給定一個年份,判斷是否是閏年。
A:能被4整除,并且不能被100整除
或者
B:能被400整除。
*/

import java.util.Scanner;

public class Runnian
{

?public static void main(String[] args)
?{
??Scanner scan=new Scanner(System.in);
??System.out.println("請輸入年份:");
??int x=scan.nextInt();
??if(x%4==0&&x%100!=0)
??{
???System.out.println("今年是閏年");
??}
??else if(x%400==0)
??{
???System.out.println("今年是閏年");
??}

?}

}


package org.westos.www;

public class chicken
{

?public static void main(String[] args)
?{
??for(int x=1;x<100;x++)
??{
???for(int y=1;y<100-x;y++)
???{
????int z=100-x-y;
????if(5*x+3*y+1/3*z==100 && x+y+z==100)
????{
?????System.out.println("小雞 =" + x);
?????System.out.println("母雞 =" + y);
?????System.out.println("公雞 =" + z);
?????System.out.println();
?????
????}
???}
??}
??
??
??
???

?}

}


package org.westos.www;
public class twoadd
{

?public static void main(String[] args)
?{?/*
??int i=0,sum=0;
??int count=0;
??while(count<5)
??{
???count++;
???i=i*10+2;
???sum+=i;
??}
??
?System.out.println("sum="+sum);
?*/
??int i=0,sum=0;
??for(int n=1;n<=5;n++)
??{
???i=i*10+2;
???sum+=i;
??}
??System.out.println("sum="+sum);
?
?
?}

}

轉載于:https://blog.51cto.com/13502303/2045452

總結

以上是生活随笔為你收集整理的第一次JAVA作业(ZLY)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。