0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

配列を入力するときの注意

Posted at
Ex1_08_3
/*-< 演習:Ex1_08_3 >---------------------------------
コマンドライン引数として3つの数値を受け取り、その合計値を
表示するプログラムを作成してください。
<例>
コマンドライン入力値:13 7 20
表示される値:40
----------------------------------------------------*/
class Ex1_08_3 {
	public static void main (String[] args) {
		
		int input1 = Integer.parseInt(args[0]);                      
		int input2 = Integer.parseInt(args[1]);                      
		int input3 = Integer.parseInt(args[2]);                                                                    
		System.out.println( input1 + input2 + input3 );   
		
	}
}

String(文字)→int(整数)に直す場合は、Integer.parseInt(x)を用いた。
初めは、args[]を1からスタートすると勘違いしていたが、0からスタートなのでコマンドライン引数を入力するときにエラーが出たので気を付ける。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?