返回列表 發帖

  1. #include<bits/stdc++.h>
  2. using namespace std;

  3. int main() {
  4.     string str;
  5.     cout << ;
  6.     getline(cin, str);


  7.     transform(str.begin(), str.end(), str.begin(), ::toupper);
  8.     cout << str << endl;


  9.     transform(str.begin(), str.end(), str.begin(), ::tolower);
  10.     cout << str << endl;

  11.     return 0;
  12. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int sum=0;
  7.     char str[50];
  8.     cout<<"輸入一字串: ";
  9.     cin.getline(str,50);
  10.     for (int i = 0; str[i] != '\0'; i++)
  11.         sum++;
  12.     cout<<"本字串共包含: "<<sum<<" 個字元"<<endl;
  13.     system("pause");     
  14.     return 0;
  15. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<sstream>
  4. using namespace std;
  5. int main()
  6. {
  7.     stringstream ss;
  8.     string str1="abc";
  9.     string str2="狗咬豬";
  10.     int a=12;
  11.     float b=3.456;
  12.     ss<<str1<<str2<<a<<b<<"...";
  13.     cout<<ss.str()<<endl;
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     string s;
  6.     getline(cin,s);
  7.     for(int i=0;i<s.size();i++)
  8.     {
  9.         if(s[i]>=65 && s[i]<=91)
  10.         {
  11.             cout<<s[i];
  12.             cout<<"up"<<endl;
  13.         }
  14.         else if(s[i]>=97 && s[i]<=122)
  15.         {
  16.              cout<<s[i];
  17.             cout<<"down"<<endl;
  18.         }
  19.         else
  20.         {
  21.              cout<<s[i];
  22.             cout<<"no"<<endl;
  23.         }
  24.     }
  25. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int a,b;
  6.     cin>>a>>b;
  7.     for(int i=a;i<b;i++)
  8.     {
  9.         cout<<char(i);
  10.     }
  11.     return 0;
  12. }
複製代碼

TOP

返回列表