1. 程式人生 > >java學習筆記3

java學習筆記3

ide src led str none 整數 util dem []

1 創建引用類型變量公式

    數據類型 變量名 = new 數據類型();

    變量名.方法名();

2 Scanner 類的使用

  

技術分享圖片
import java.util.Scanner;
public class Test1{
    public static void main (String [] args){
        /*使用Scanner的步驟
            1   導入包    用import   Java.util
            2  用引用類型創建公式  數據類型 變量名 = new 數據類型();
            3  用該數據類型的方法  對應的變量名.next();
        
*/ Scanner sc = new Scanner(System.in); int Num = sc.nextInt(); System.out.println(Num); } }
View Code

3 Random隨機數類的使用

技術分享圖片
 1 import java.util.Random;
 2 public  class Test2{
 3     public static void main(String[] args){
 4         // 1 導包
 5         // 2根據公式創建引用類型
6 Random r= new Random(); 7 //3 用變量使用Random 的方法 8 int RaNum = r.nextInt(100)+1; 9 System.out.println(RaNum); 10 } 11 }
View Code

4if 語句

技術分享圖片
public class Test4{
    public static void main (String [] args){
        int i=66;
        if(i>6){
            System.out.println(
"if 中條件為真"); } } }
View Code

5while語句

技術分享圖片
public class WhileDemo{
    public static void main(String [] args){
        int i=1;
        while(i<=5){
            System.out.println(i);
            i++;
        }
    }
}
View Code

6嵌套for循環

技術分享圖片
//for(初始化表達式; 循環條件; 操作表達式) {
//………
//    for(初始化表達式; 循環條件; 操作表達式) {
//    執行語句}
//………
//}
//    總的循環次數 = 內循環次數 * 外層循環次數
//    內循環 是外循環的循環體
//    外循環  控制行
/ /   內循環  控制列
//    ex:
    public class ForFor{
    public static void main(String[] args){
        for(int i = 0;i<9;i++){
            for(int j =0;j<i+1;j++){
                System.out.print("*");
            }
            System.out.println();
        }
    }
}
View Code

7實現猜數字小遊戲

技術分享圖片
import java.util.*;
public class Lx2{
    public static void main(String [] args){
        System.out.println("這是一個猜數字遊戲");
        System.out.println("請輸入一個1-100的整數");
        Random r = new Random();
        int num = r.nextInt(100)+1;
        Scanner sc = new Scanner(System.in);
        for(int i =1;i<10;i++){
            int num1 = sc.nextInt();
            if(num==num1){
                System.out.println("恭喜你,猜對了");
                break;
            }else{
                if(num>num1){
                    System.out.println("猜小了");
                }else{
                    System.out.println("猜大了");
                }
            }
            if(i==5){
                System.out.println("都五次了,真菜");
            }
            System.out.println("還有"+(5-i)+"次,請謹慎");
        }
    }
}
View Code

技術分享圖片

技術分享圖片

java學習筆記3