Advertisement
ImoogiWild

Bài 4

Oct 21st, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1. #include <iostream>
  2. #include <stdint.h>
  3. using namespace std;
  4. int main(){
  5.     char a;
  6.     cout<<"Nhap vao mot ki tu bat ki : ";
  7.     cin>>a;
  8.     cout << "Ma ACSII cua ki tu nay la : " << static_cast<int16_t>(a);
  9.     return 0;
  10.      }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement