1. 程式人生 > 實用技巧 >第七天,開始了周而復始的迴圈之道

第七天,開始了周而復始的迴圈之道

首先是scanner部分的一些補充內容,由於用到了迴圈所以也放到這裡

 1 package operator;
 2 
 3 import java.util.Scanner;
 4 
 5 public class demo9 {
 6     public static void main(String[] args) {
 7         Scanner scanner = new Scanner(System.in);
 8         //從鍵盤輸入資料
 9         int i =0;
10         float f = 0.0f;
11         System.out.println("請輸入整數:");
12 13 //如果 那麼 14 if(scanner.hasNextInt()) 15 { 16 i = scanner.nextInt(); 17 System.out.println("整數資料:"+i); 18 19 20 } 21 else 22 { 23 System.out.println("你輸入的不是整數資料!"); 24 } 25 26 if(scanner.hasNextFloat())
27 { 28 f = scanner.nextFloat(); 29 System.out.println("小數資料:"+f); 30 31 32 } 33 else 34 { 35 System.out.println("你輸入的不是小數資料!"); 36 } 37 } 38 }

結果展示: