Hoon222y

printf , scanf 서식문자 입력 팁 본문

코딩/사소한 팁

printf , scanf 서식문자 입력 팁

hoon222y 2017. 8. 31. 12:46


입력을 받을때 %x로 받으면 16진수 형태로 입력이 된다.


https://www.acmicpc.net/problem/1550 문제를 풀 때를 예로들면 


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <vector>
#include <stack>
#include <deque>
#include <queue>
#include <cmath>
#include <stdio.h>
 
#define INF 1e9
typedef long long ll;
using namespace std;
 
string s;
ll ans;
 
int main(){
    int x;
    scanf("%x",&x);
    printf("%d",x);
}
cs


이런식으로 아주 간단하게 끝낼 수 있다. 

'코딩 > 사소한 팁' 카테고리의 다른 글

Set 을 이용한 집합연산 C++ STL  (0) 2017.10.03
그래프를 깔끔하게 그리고 싶다면... GNU plot  (0) 2017.09.18
아스키코드 표  (0) 2017.08.24
GCD(최대공배수) Code  (0) 2017.08.23
string 과 int 형변환  (0) 2017.06.19
Comments