1.學習Java應用程式是如何工作的 2.構成一個應用程式 3.嚮應用程式傳遞參數 4.學習Java程式是如何組織的 5.在應用程式中創建一個對象 程式Root:輸出225的正平方根 1 package com.jsample;//應用程式位於jsample包中 2 3 public class R ...
1.學習Java應用程式是如何工作的
2.構成一個應用程式
3.嚮應用程式傳遞參數
4.學習Java程式是如何組織的
5.在應用程式中創建一個對象
程式Root:輸出225的正平方根
1 package com.jsample;//應用程式位於jsample包中 2 3 public class Root { 4 public static void main(String[] args){ 5 int number=225;//變數number存儲255 6 System.out.println("The square root of "//顯示該整數及其平方根 7 +number 8 +" is " 9 +Math.sqrt(number)//顯示平方根 10 ); 11 } 12 }View Code
程式AnotherRoot:輸出625的正平方根
1 package com.jsample; 2 3 public class AnotherRoot { 4 public static void main(String[] args) 5 { 6 int number = 625; 7 System.out.println("The square root of "//顯示該整數及其平方根 8 +number 9 +" is " 10 +Math.sqrt(number) 11 );//顯示平方根 12 } 13 }View Code
程式blank filler:傳遞參數,填空
1 package com.jsample; 2 3 public class AnotherRoot { 4 public static void main(String[] args) 5 { 6 int number = 625; 7 System.out.println("The square root of "//顯示該整數及其平方根 8 +number 9 +" is " 10 +Math.sqrt(number) 11 );//顯示平方根 12 } 13 }View Code
程式NewRoot:傳遞參數,轉化為double型,並輸出其正平方根
1 package com.jsample; 2 3 public class NewRoot { 4 public static void main(String[] args) 5 { 6 System.out.println("The square root of "//顯示該整數及其平方根 7 +args[0] 8 +" is " 9 +Math.sqrt(Double.parseDouble(args[0]))//顯示平方根,然而Java在運行時將所有參數 10 ); //存儲為字元串,需要轉換 11 } 12 }View Code