250x250
반응형
Notice
Recent Posts
Recent Comments
Link
N
(SWEA c++)5549. 홀수일까 짝수일까 본문
728x90
반응형
입력받는 수가 크기 때문에 string 형태로 받아온다.
그리고 맨 마지막의 문자를 int형으로 변환한 후 2로 나눴을 때
1 or 0 이냐를 확인하면 된다.
#include <iostream>
#include <string>
using namespace std;
int main(void)
{
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int t;
cin >> t;
for(int tc = 1; tc <= t; tc++)
{
string s;
cin >> s;
cout << "#" << tc << " ";
if((s.back() - '0') % 2)
cout << "Odd" << endl;
else
cout << "Even" << endl;
}
return 0;
}
728x90
반응형
'SW Expert Academy' 카테고리의 다른 글
(SWEA c++)5789. 현주의 상자 바꾸기 (0) | 2020.11.16 |
---|---|
(SWEA c++)5688. 세제곱근을 찾아라 (0) | 2020.11.16 |
(SWEA c++)5515. 2016년 요일 맞추기 (0) | 2020.11.16 |
(SWEA c++)5431. 민석이의 과제 체크하기 (0) | 2020.11.16 |
(SWEA c++)4615. 재미있는 오셀로 게임 (0) | 2020.11.15 |