https://www.acmicpc.net/problem/15964
아이디어:
함수를 사용할 수 있는지 묻는 문제
long 자료형 사용
// 15964
#include <iostream>
using namespace std;
long calc(long a, long b) {
return (a + b) * (a - b);
}
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL);
long n, m, answer;
cin >> n >> m;
answer = calc(n, m);
cout << answer;
return 0;
}
'algorithm' 카테고리의 다른 글
백준 31403번 A+B-C (0) | 2024.10.27 |
---|---|
백준 2475번 검증수 (0) | 2024.10.27 |
백준 2754번 학점계산 (0) | 2024.10.27 |
백준 2744번 대소문자 바꾸기 (1) | 2024.10.27 |
백준 10872번 팩토리얼 (0) | 2024.10.27 |