[백준 27331] 2 桁の整数 (Two-digit Integer) (C#, C++) - soo:bak
작성일 :
문제 링크
27331번 - 2 桁の整数 (Two-digit Integer)
설명
입력으로 주어지는 두 개의 정수 a
와 b
를 사용하여 두 자리 양의 정수를 출력하는 문제입니다.
문제의 조건에 따르면, a
는 10의 자리 숫자로 사용해야 하며, b
는 1의 자리 숫자로 사용해야 합니다.
간단한 수식을 활용하여 최종적으로 계산된 숫자를 출력합니다.
Code
[ C# ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace Solution {
class Program {
static void Main(string[] args) {
var a = int.Parse(Console.ReadLine()!);
var b = int.Parse(Console.ReadLine()!);
var ret = (10 * a) + b;
Console.WriteLine(ret);
}
}
}
[ C++ ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int a, b; cin >> a >> b;
int ret = (10 * a) + b;
cout << ret << "\n";
return 0;
}