반응형
사칙연산 관련 문제 + 문자열 추가 출력
import java.io.BufferedReader;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws Exception{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringBuilder sb = new StringBuilder();
// // enter 구분
//
// int a = Integer.parseInt(br.readLine());
// int b = Integer.parseInt(br.readLine());
//
// if ( 0 < a || b < 10 ){
// throw new Exception();
// }
//
// int result = a + b;
//
//// sb.append(result);
//
// System.out.println(result);
// String[] strs = br.readLine().split(" ");
// // double은 15자리 float는 7자리 까지
// double a = Double.parseDouble(strs[0]);
// double b = Double.parseDouble(strs[1]);
//
// if ( (0 > a || a > 10000) || (0 > b || b > 10000)){
// throw new Exception();
// }
//
// double result = a / b;
// System.out.println(result);
// String[] strs = br.readLine().split(" ");
// int a = Integer.parseInt(strs[0]);
// int b = Integer.parseInt(strs[1]);
//
// if ( (0 > a || a > 10000) || (0 > b || b > 10000)){
// throw new Exception();
// }
//
// int sum = a + b;
// int different = a - b;
// int cross = a * b;
// int division = a / b;
// int rest = a % b;
//
// sb.append(sum + "\n" + different + "\n" + cross + "\n" + division + "\n" + rest );
//
// System.out.println(sb);
String text = br.readLine();
sb.append(text+"??!");
System.out.println(sb);
}
}
반응형
'Backend > JAVA' 카테고리의 다른 글
[Algorithm] 데일리 백준 (0) | 2024.04.04 |
---|---|
[Algorithm] 데일리 백준 (0) | 2024.04.03 |
[Java] 시간 비교, 시간 파싱 (0) | 2024.03.14 |
Response로 Json 생성 (0) | 2024.02.19 |
Gradle-JDK이슈 (0) | 2024.02.16 |