12.15 명령행 매개 변수에서 두 문자열 형식의 수치를 입력하고 두 개의 수치의 합을 계산하는 프로그램을 작성합니다
3279 단어 숙제
package Text6;
import java.util.Scanner;
// , , 。
public class Zuoye1 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println(" :");
String n = sc.nextLine();
String n1 = sc.nextLine();
int s = Integer.parseInt(n);
int c = Integer.parseInt(n1);
int sum = s+c;
System.out.println(sum);
}
}
}
}