Board logo

標題: 字串處理 (九) - 將ASCII碼轉換為字串 [打印本頁]

作者: 陳品肇    時間: 2019-4-11 14:37     標題: 字串處理 (九) - 將ASCII碼轉換為字串

[attach]6281[/attach]
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int start, end;
  7.     cout<<"在此輸入ASCII碼範圍(0~127)"<<endl;
  8.     cout<<"起始值: ";
  9.     cin>>start;
  10.     cout<<"終止值: ";
  11.     cin>>end;
  12.     cout<<"所得字串:"<<endl;
  13.     for(int i=start; i<=end; i++)
  14.         cout<<char(i);
  15.     cout<<endl;
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼

作者: 陳柏霖    時間: 2019-4-13 16:53

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int start ,end;
  7.     cout<<"起點:";
  8.     cin>>start;
  9.     cout<<"終點:";
  10.     cin>>end;
  11.     for(int i=start; i<=end; i++)
  12.     cout<<i<<"->"<<char(i)<<endl;
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

作者: 蔡依宸    時間: 2019-4-13 16:54

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int start, end;
  7.     cout<<"在此輸入ASCII碼範圍(0~127)"<<endl;
  8.     cout<<"起始: ";
  9.     cin>>start;
  10.     cout<<"終止: ";
  11.     cin>>end;
  12.     cout<<"所得字串:"<<endl;
  13.     for(int i=start; i<=end; i++)
  14.         cout<<char(i);
  15.     cout<<endl;
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼

作者: 譚詩澐    時間: 2019-4-13 16:56

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int s, e;
  7.     cout<<"輸入ASCII碼範圍(0~127)"<<endl;
  8.     cout<<"起始值: ";
  9.     cin>>s;
  10.     cout<<"終止值: ";
  11.     cin>>e;
  12.     cout<<"所得字串:"<<endl;
  13.     for(int i=s; i<=e; i++)
  14.         cout<<char(i);
  15.     cout<<endl;
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼

作者: 戴安利    時間: 2019-4-13 16:57

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int start, end;
  7.    cout<<"在此輸入ASCII碼範圍(0~127)"<<endl;
  8.    cout<<"起始值: ";
  9.    cin>>start;      
  10.    cout<<"終止值: ";
  11.    cin>>end;
  12.    cout<<"所得字串為: "<<endl;
  13.    for(int i=start; i<end; i++)
  14.    cout<<char(i);
  15.    cout<<endl;
  16.    
  17.    system("pause");
  18.    return 0;
  19. }
複製代碼

作者: 戴偉宸    時間: 2019-4-13 16:58

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int start,end;
  7.     cout<<"在此輸入ASCII碼範圍(0~127)"<<endl;
  8.     cout<<"起始值:";
  9.     cin>>start;
  10.     cout<<"終止值:";
  11.     cin>>end;
  12.     cout<<"所得字串:"<<endl;
  13.     for(int i=start;i<=end;i++)
  14.         cout<<char(i);
  15.     cout<<endl;   
  16.     system("pause");
  17.     return 0;      
  18. }
複製代碼

作者: 戴唯陞    時間: 2019-4-13 16:59

  1. #include<iostream>
  2. #include<cstdlib>

  3. using namespace std;
  4. int main()
  5. {
  6.    int start,end;
  7.    cout<<"請輸入ASCII範圍(1-127)"<<endl;
  8.    cout<<"起始值"<<endl;
  9.    cin>>start;
  10.    cout<<"終止值"<<endl;
  11.    cin>>end;
  12.    
  13.    cout<<"所得字串"<<endl;
  14.    for(int i=start;i<=end;i++)
  15.    cout<<char(i);
  16.    cout<<endl;
  17.    
  18.    system("pause");
  19.    return 0;
  20. }
複製代碼

作者: 蔡季庭    時間: 2019-4-13 17:01

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     int start, end;
  8.    cout<<"在此輸入ASCII碼範圍(0~127)"<<endl;
  9.      cout<<"起始點: ";
  10.     cin>>start;
  11.     cout<<"終止點: ";
  12.     cin>>end;
  13.     cout<<"所的字串"<<endl;
  14.     for(int i=start; i<=end; i++)
  15.         cout<<char(i);
  16.     cout<<endl;
  17.     system("pause");     
  18.     return 0;   
  19. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2