返回列表 發帖
  1. #include<cstdlib>
  2. #include<iostream>
  3. using namespace std;
  4. int main(){
  5.     cout<<"wassup?";
  6.     string str;
  7.     getline(cin,str);
  8.     cout<<str.length()<<" characters!"<<endl;
  9.     for(int x=0;x<str.size();x++){
  10.             cout<<int(str[x])<<endl;
  11.             }

  12.     system("pause");
  13.     return 0;
  14. }
複製代碼
Attention Seeker </3

TOP

返回列表