"C++ 16진수-10진수 변환"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
3번째 줄: 3번째 줄:
;C++ 16진수-10진수 변환
;C++ 16진수-10진수 변환


<source lang='cpp'>
<syntaxhighlight lang='cpp'>
#include <iostream>  
#include <iostream>  
using namespace std;  
using namespace std;  
14번째 줄: 14번째 줄:
     cout << stoi("FFFF", nullptr, 16) << endl;  // 65535
     cout << stoi("FFFF", nullptr, 16) << endl;  // 65535
}
}
</source>
</syntaxhighlight>
<source lang='cpp'>
<syntaxhighlight lang='cpp'>
#include <iostream>  
#include <iostream>  
using namespace std;  
using namespace std;  
41번째 줄: 41번째 줄:
     cout << hex2dec("FFFF") << endl;  // 65535
     cout << hex2dec("FFFF") << endl;  // 65535
}
}
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==

2020년 11월 2일 (월) 02:48 판

1 개요

C++ hex2dec()
C++ 16진수-10진수 변환
#include <iostream> 
using namespace std; 
int main() 
{ 
    cout << stoi("0", nullptr, 16) << endl; // 0
    cout << stoi("-a", nullptr, 16) << endl; // -10
    cout << stoi("2F", nullptr, 16) << endl; // 47
    cout << stoi("-fffe", nullptr, 16) << endl; // -65534
    cout << stoi("FFFF", nullptr, 16) << endl;  // 65535
}
#include <iostream> 
using namespace std; 
int hex2dec(string hex) 
{    
    int len = hex.length(); 
    int base = 1; 
    int ret = 0; 
    for (int i=len-1; i>=0; i--) {    
        if (hex[i]>='0' && hex[i]<='9') ret += (hex[i] - 48)*base; 
        else if (hex[i]>='A' && hex[i]<='F') ret += (hex[i] - 55)*base; 
        else if (hex[i]>='a' && hex[i]<='f') ret += (hex[i] - 87)*base; 
        base *= 16; 
    }
    return ret; 
} 
int main() 
{ 
    cout << hex2dec("0") << endl; // 0
    cout << hex2dec("a") << endl; // 10
    cout << hex2dec("A") << endl; // 10
    cout << hex2dec("1A") << endl; // 26
    cout << hex2dec("2f") << endl; // 47
    cout << hex2dec("ffff") << endl;  // 65535
    cout << hex2dec("FFFF") << endl;  // 65535
}

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}