BOJ|1330号
Pythonプール A, B = map(int,input().split())
if A > B: # A가 B보다 크다면
print('>') # '>' 출력
elif A < B: # 그렇지 않고 A가 B보다 작다면
print('<') # '<' 출력
else: # 둘다 아니라면
print('==') # '==' 출력
条件文ifを用いて代数比較を行う問題.これは難題ではありません.説明はスキップしましょう.
C++プール #include <iostream>
using namespace std;
int main()
{
int A, B;
cin >> A >> B;
if (A > B) cout << ">";
else if (A < B) cout << "<";
else cout << "==";
}
Reference
この問題について(BOJ|1330号), 我々は、より多くの情報をここで見つけました
https://velog.io/@hrpp1300/BOJ-1330번
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
A, B = map(int,input().split())
if A > B: # A가 B보다 크다면
print('>') # '>' 출력
elif A < B: # 그렇지 않고 A가 B보다 작다면
print('<') # '<' 출력
else: # 둘다 아니라면
print('==') # '==' 출력
#include <iostream>
using namespace std;
int main()
{
int A, B;
cin >> A >> B;
if (A > B) cout << ">";
else if (A < B) cout << "<";
else cout << "==";
}
Reference
この問題について(BOJ|1330号), 我々は、より多くの情報をここで見つけました https://velog.io/@hrpp1300/BOJ-1330번テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol