1. 程式人生 > >JAVA練習1

JAVA練習1

第四/五章

1.編寫Java程式,判斷x是奇數還是偶數

程式碼如下:

// An highlighted block
package exercise;

public class decide1 {
	static int x=5;
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		if(x%2==1) {
			System.out.println("x為奇數");
		}else {
			System.out.println("x為偶數");
		}
	}

}

2.編寫Java程式,用for迴圈列印稜形

程式碼如下:

// An highlighted block
public class exercise {

	public static void main(String[] args) {
		//System.out.println("\n"+"//");
		//int l=4;//定義斜邊長度
		for(int i=1;i<=4;i++) {
			for(int j=4;j>i-1;j--) {
				System.out.print(" ");
			}
			//System.out.println("/");
			for(int k=1;k<=i;k++) {
				System.
out.print("* "); } System.out.println(); }//上半部分 for(int i=1;i<=3;i++) { for(int j=3;j>=3-i;j--) { System.out.print(" "); } for(int k=1;k<=4-i;k++) { System.out.print("* "); } System.out.println(); }//下半部分 }

3.編寫java程式,使用while迴圈計算1+1/2!+…+1/20!

// An highlighted block
public class exercise {

	public static void main(String[] args) {
       int N=20;
       int i=1;
       double sum=0;
       while(i<=N) {
    	   int temp=1;
           int j=1;
    	   while(j<=i) {
    		   temp=temp*j;
    		   j++;
    	   }
    	   sum=sum+(double)1/temp;
    	   i++;
       }
       System.out.println(sum);		
	}
}

4.使用String類的toUpperCase()方法和toLowerCase()方法來實現大小寫的轉換

      String str=new String("Yao Li you dian lan");
      String str1=str.toLowerCase();
      String str2=str.toUpperCase();
      System.out.println(str1);
      System.out.println(str2);

5.分別擷取字串str1和字串str2中的部分內容。如果擷取後的兩個子串相同(不區分大小寫)輸出相同,否則輸出不同

	public static void main(String[] args) {
      String str1=new String("Yao Li ke ai you shan liang");
      String str2=new String("Yao Li piao liang you cong ming");
      int size1=str1.length();
      int size2=str2.length();
      String str3=str1.substring(7, size1);
      String str4=str2.substring(7, size2);
      String str5=str3.toLowerCase();
      String str6=str4.toLowerCase();
      boolean tp=(str5==str6);
      if (tp==false) {
    	  System.out.println("不同");
      }else {
    	  System.out.println("相同");
      }
      //System.out.println(tp);
     // System.out.println(str2);      
	}

6.使用正則表示式來判斷字串text是否為合法的手機號

	public static void main(String[] args) {
      String str1=new String("text");
      String tel="\\d{11,}";
      if (str1.matches(tel)) {
    	  System.out.println(str1+"是電話號碼");
      }else {
    	  System.out.println(str1+"不是電話號碼");
      }
  
	}

7.使用字串生成器,將字串str追加1~10這10個數字

	public static void main(String[] args) {
      //String str1=new String("yao li zhen piao liang");
      StringBuilder builder=new StringBuilder("yao li zhen piao liang");
      for(int i=1;i<=10;i++) {
    	  builder.append(i);
      }
      System.out.println(builder);
  
	}