返回列表 發帖

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. int main(int argc, char** argv) {
  4.     string a, b;
  5.     cin>>a>>b;
  6.     cout<<a.length()<<endl;
  7.     cout<<b.length()<<endl;
  8.     cout<<a+b;
  9.     return 0;
  10. }
複製代碼

TOP

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. int main(int argc, char** argv) {
  4.     char a[100], b[100];
  5.     int n, atotal, btotal;
  6.     cin>>a>>b>>n;
  7.     for(int i=0;i<=a[n];i++){
  8.         atotal+=int(a[i]);
  9.     }
  10.     for(int i=0;i<=b[n];i++){
  11.         btotal+=int(b[i]);
  12.     }
  13.     if(atotal=btotal){
  14.         cout<<"atotal=btotal";
  15.     }else if(atotal>btotal){
  16.         cout<<"atotal>btotal";   
  17.     }else if(atotal<btotal){
  18.         cout<<"atotal<btotal";   
  19.     }
  20.    
  21.     return 0;
  22. }
複製代碼

TOP

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

int main()
{
    ifstream ifs;
    ifs.open("read.txt");
    if(!ifs.is_open())
        cout<<"error"<<endl;
    string s;
    int n;
    while(ifs>>s)
    {
        
    }
}

TOP

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


  3. int main(int argc, char** argv) {
  4.     int a;
  5.     char word[100];
  6.     cin>>word;
  7.     a=strlen(word);
  8.     for(int i=0;i<a;i++){
  9.         if(islower(word[i])){
  10.             cout<<(char)toupper(word[i]);
  11.         }else if(isupper(word[i])){
  12.             cout<<(char)tolower(word[i]);
  13.         }else{
  14.             cout<<word[i];            
  15.         }
  16.     }
  17.     return 0;
  18.     }
複製代碼

TOP

返回列表