티스토리 뷰

문제
두 자연수 A와 B가 주어진다. 이때, A+B, A-B, A*B, A/B(몫), A%B(나머지)를 출력하는 프로그램을 작성하시오.
입력
두 자연수 A와 B가 주어진다. (1 ≤ A, B ≤ 10,000)
출력
첫째 줄에 A+B, 둘째 줄에 A-B, 셋째 줄에 A*B, 넷째 줄에 A/B, 다섯째 줄에 A%B를 출력한다.
풀이 과정
기존에 A+B, A-B, AxB, A/B 문제를 풀었던 것처럼 풀이하면 된다.
C
#include <stdio.h>
int main(void) {
int a, b;
scanf("%d %d", &a, &b);
printf("%d\n", a+b);
printf("%d\n", a-b);
printf("%d\n", a*b);
printf("%d\n", a/b);
printf("%d", a%b);
return 0;
}
C++
#include <iostream>
using namespace std;
int main(void) {
int a, b; cin >> a >> b;
cout << a+b << endl << a-b << endl << a*b << endl << a/b << endl << a%b;
return 0;
}
Python
a, b = map(int, input().split())
print(a+b)
print(a-b)
print(a*b)
print(a//b)
print(a%b)
Java
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
System.out.println(a+b);
System.out.println(a-b);
System.out.println(a*b);
System.out.println(a/b);
System.out.println(a%b);
}
}'(예전 글) > PS' 카테고리의 다른 글
| [ BOJ ] 10926 : ??! ( BRONZE 5 ) / C, C++, Python, Java (0) | 2023.06.24 |
|---|---|
| [ BOJ ] 15353 : 큰 수 A+B (2) ( SILVER 3 ) / C (0) | 2023.06.20 |
| [ BOJ ] 11899 : 괄호 끼워넣기 ( SILVER 3 ) / Python (0) | 2023.06.18 |
| [ BOJ ] 1008 : A/B ( BRONZE 5 ) / C, C++, Python, Java (1) | 2023.06.18 |
| [ BOJ ] 6758 : Tourney ( PLATINUM 3 ) / C (2) | 2023.06.16 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- C
- bitmask
- math
- Python
- BOJ
- Greedy
- 백준
- stack
- string
- PS
- codeup
- Sort
- java
- bruteforcing
- knapsack
- queue
- lca
- Prefix-Sum
- lazy-propagation
- implementation
- kmp
- ad_hoc
- Binary-Search
- C++
- segment-tree
- DP
- BFS
- sparse_table
- backtracking
- number_theory
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 | 31 |
글 보관함
