Notice
Recent Posts
Recent Comments
Link
bdfgdfg
1000,1001,1550번 문제 본문
반응형
#include <iostream>
using namespace std;
int main(void)
{
int a,b;
cin >> a >> b;
cout << a + b;
return 0;
}
1000번
#include <iostream>
using namespace std;
int main(void)
{
int a,b;
cin >> a >> b;
cout << a - b;
return 0;
}
1001번
1550번
#include <iostream>
using namespace std;
int main(void)
{
string c;
cin >> c;
cout << static_cast<int>(strtol(c.c_str(), NULL, 16));
return 0;
}
strtol을 통해 진수변환이 가능. string을 long형으로 변환하지만 마지막 인자에 진수값을 넣어주면 된다.
반응형
'코딩테스트 > 백준' 카테고리의 다른 글
2480번, 2525번 (0) | 2021.09.17 |
---|---|
3046번,5564번,8393번 (0) | 2021.09.12 |
2845번, 2914번, 3003번 (0) | 2021.09.09 |
sovled.ac (0) | 2021.09.08 |
1920번 수 찾기 - 이진탐색(이분탐색) (0) | 2021.09.08 |
Comments