返回列表 發帖

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string a;
  8.     getline(cin,a);
  9.     cout<<a;
  10.    
  11.    
  12.     system("pause");
  13.     return 0;   
  14. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     char  a[50];
  8.     cin.getline(a,50);
  9.     cout<<a;
  10.    
  11.    
  12.     system("pause");
  13.     return 0;   
  14. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. #include<algorithm>
  5. using namespace std;
  6. int main()
  7. {
  8.     string a;
  9.     cin>>a;
  10.     transform(a.begin(),a.end(),a.begin(),::toupper);
  11.     cout<<a;
  12.     transform(a.begin(),a.end(),a.begin(),::tolower);
  13.     cout<<endl;
  14.     cout<<a;
  15.    
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     int i;
  8.     char a[50];
  9.     cout<<"請輸入任意一串英文字串";
  10.     cin.getline(a,50);
  11.    
  12.     cout<<"抓出第幾個字母";
  13.     cin>>i;
  14.     cout<<"字串的第"<<i<<"個字母:" <<a[i-1];
  15.    
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. #include <algorithm>
  5. using namespace std;
  6. int main()
  7. {
  8.     int s;
  9.     int e;
  10.     char str[127];
  11.     cout<<"起始值" ;
  12.     cin>>s;
  13.     cout<<"終止值";
  14.     cin>>e;
  15.    
  16.     for (int i = s; i<=e; i++){
  17.         cout<< char(i);
  18.     }
  19.    
  20.     system("pause");
  21.     return 0;   
  22. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. #include <algorithm>
  5. using namespace std;
  6. int main()
  7. {
  8.     int n;
  9.     char str[100];
  10.    cout<<"輸入任意字元<100字以內>";
  11.      cin.getline(str, 100);
  12.     for (int i=1;i<=int(str[127]);i++){
  13.     cout<<"第"<<i<<"個字元的ASCII碼為"<<int(str[i]);
  14.     if(int(str[i])<int(str[41]) and int(str[i])>str[90]){
  15.         cout<<"大寫";
  16.       }else if(int(str[i])<int(str[61]) and int(str[i])>str[122]){
  17.         cout<<"小寫";
  18.       }else{
  19.           cout<<"該字元不是英文字母";
  20.       }
  21.       
  22.    
  23.     }
  24.         
  25.    
  26.     system("pause");
  27.     return 0;   
  28. }
複製代碼

TOP

返回列表