이 튜토리얼에서는 ASCII 룩업 테이블을 구현하는 프로그램에 대해 논의할 것입니다.
ASCII 조회 테이블은 주어진 문자의 8진수, 16진수, 10진수 및 HTML 값을 제공하는 표 형식입니다.
ASCII 조회 테이블의 문자에는 알파벳, 숫자, 구분 기호 및 특수 기호가 포함됩니다.
예시
#include <iostream>
#include <string>
using namespace std;
//converting decimal value to octal
int Octal(int decimal){
int octal = 0;
string temp = "";
while (decimal > 0) {
int remainder = decimal % 8;
temp = to_string(remainder) + temp;
decimal /= 8;
}
for (int i = 0; i < temp.length(); i++)
octal = (octal * 10) + (temp[i] - '0');
return octal;
}
//converting decimal value to hexadecimal
string Hexadecimal(int decimal){
string hex = "";
while (decimal > 0) {
int remainder = decimal % 16;
if (remainder >= 0 && remainder <= 9)
hex = to_string(remainder) + hex;
else
hex = (char)('A' + remainder % 10) + hex;
decimal /= 16;
}
return hex;
}
//converting decimal value to HTML
string HTML(int decimal){
string html = to_string(decimal);
html = "&#" + html + ";";
return html;
}
//calculating the ASCII lookup table
void ASCIIlookuptable(char ch){
int decimal = ch;
cout << "Octal value: " << Octal(decimal) << endl;
cout << "Decimal value: " << decimal << endl;
cout << "Hexadecimal value: " << Hexadecimal(decimal) <<
endl;
cout << "HTML value: " << HTML(decimal);
}
int main(){
char ch = 'a';
ASCIIlookuptable(ch);
return 0;
} 출력
Octal value: 141 Decimal value: 97 Hexadecimal value: 61 HTML value: a