FastCampus 모의고사 공식 솔루션
세트 | 링크 | 출제자 |
---|---|---|
1 세트 | 바로 가기 | tony9402 |
2 세트 | 바로 가기 | tony9402 |
3 세트 | 바로 가기 | tony9402 |
4 세트 | 바로 가기 | chogahui05 |
5 세트 | 바로 가기 | tony9402 |
6 세트 | 바로 가기 | chogahui05 |
7 세트 | 바로 가기 | tony9402 |
A+B 예시
- C++
소스코드 보기
#include<iostream>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int a, b; cin >> a >> b;
cout << a + b;
return 0;
}
- Java
소스코드 보기
import java.util.*;
import java.lang.*;
import java.io.*;
public class Main {
public static void main(String[] args) {
FastReader rd = new FastReader();
int a = rd.nextInt();
int b = rd.nextInt();
System.out.println(a + b);
}
static class FastReader {
BufferedReader br;
StringTokenizer st;
public FastReader() {
br = new BufferedReader(new InputStreamReader(System.in));
}
String next() {
while(st == null || !st.hasMoreElements()) {
try {
st = new StringTokenizer(br.readLine());
}
catch (IOException e) {
e.printStackTrace();
}
}
return st.nextToken();
}
int nextInt() { return Integer.parseInt(next()); }
long nextLong() { return Long.parseLong(next()); }
double nextDouble() { return Double.parseDouble(next()); }
String nextLine() {
String str = "";
try {
str = br.readLine();
}
catch (IOException e) {
e.printStackTrace();
}
return str;
}
}
}
- python
소스코드 보기
import sys
def input():
return sys.stdin.readline().rstrip()
a, b = map(int, input().split())
print(a + b)
Issue로 틀린 부분을 알려주시면 감사하겠습니다.