返回列表 發帖
  1. #include <iostream>
  2. using namespace std;
  3. int main(){
  4.     string let;
  5.     cout<<"Enter Something: ";
  6.     getline(cin,let);
  7.     cout<<"ASCII output= "<<endl;
  8.     for(int i=0;i<let.length();i++)
  9.     {
  10.             cout<<int(let[i])<<endl;
  11. }

  12.    

  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

TOP

返回列表