Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 아두이노
- directx
- set
- WinAPI
- map
- 수광 소자
- 자료구조
- html
- queue
- c++
- 아두이노 소스
- Array
- 컴퓨터 그래픽스
- 시스템프로그래밍
- arduino compiler
- 아두이노 컴파일러
- 라인트레이서
- priority_queue
- 통계학
- Algorithm
- vector
- Stack
- C언어
- 운영체제
- list
- Arduino
- LineTracer
- Visual Micro
- stl
- Deque
Archives
- Today
- Total
Kim's Programming
1936. 1대1 가위바위보 본문
1936. 1대1 가위바위보
풀이 방법
<코드>
#include <iostream> int main() { int inputA{0}, inputB{0}; std::cin>>inputA>>inputB; if(inputA==1) { if(inputB==2) std::cout<<"B"; else if(inputB==3) std::cout<<"A"; } else if(inputA==2)//가위 1 바위 2 보 3 { if(inputB==1) std::cout<<"A"; else if(inputB==3) std::cout<<"B"; } else if(inputA==3) { if(inputB==1) std::cout<<"B"; else if(inputB==2) std::cout<<"A"; } std::cout<<"\n"; return 0; }
'SW ExpertAcademy > D1' 카테고리의 다른 글
2025. N줄덧셈 (0) | 2018.11.30 |
---|---|
1938. 아주 간단한 계산기 (0) | 2018.11.30 |
1933. 간단한 N 의 약수 (0) | 2018.11.30 |
2019. 더블더블 (0) | 2018.11.30 |
1545. 거꾸로 출력해 보아요 (0) | 2018.11.30 |