字符串大小写转换

时间:2022-05-09 21:00:33
  • #include <iostream>  
  •   
  • using namespace std;  
  •   
  • int main()  
  • {  
  •     char a[20];  
  •     int i = 0;  
  •     cout<<"请输入一串字符:\n";  
  •     cin>>a;  
  •     for(;a[i];i++)  
  •     {  
  •         if(a[i] >= 'a'&&a[i] <= 'z')  
  •             a[i] -= 32;  
  •         else if(a[i] >= 'A'&&a[i] <= 'Z')  
  •             a[i] += 32;  
  •     }  
  •     for(i = 0;a[i];i++)  
  •         cout<<a[i];  
  •     cout<<endl;  
  •   
  •     system("pause");  
  •     return 0;