程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> 簡單字符串比較

簡單字符串比較

編輯:C++入門知識

[cpp]
/*題目描述
請使用字符串比較函數,比較兩個字符串的大小,並按要求輸出比較後的結果。字符串最長不超過15個字符。
輸入兩個字符串str1和str2,如果第一個字符串與第二個字符串相等,輸出str1=str2,如果第一個字符串大於第二個字符串,輸出str1>str2,如果第一個字符串小於第二個字符串,輸出str1 < str2。
輸入
第1行為第一個字符串。 
第2行為第二個字符串。
輸出
在一行輸出比較後的結果。例如"abc"與"abc"相等,輸出為abc=abc,如果"ab"小於"abc”,輸出ab < abc。
*/ 
#include <iostream>  
#include <string>  
using namespace std; 
int main() 

    void strcompare(string str1,string str2); 
    string str1,str2; 
    cin>>str1>>str2; 
    strcompare(str1,str2); 
    return 0; 

void strcompare(string str1,string str2) 

    if(str1==str2) 
        cout<<str1<<"="<<str2<<endl; 
    if(str1<str2) 
        cout<<str1<<"<"<<str2<<endl; 
    if(str1>str2) 
        cout<<str1<<">"<<str2<<endl; 

/*題目描述
請使用字符串比較函數,比較兩個字符串的大小,並按要求輸出比較後的結果。字符串最長不超過15個字符。
輸入兩個字符串str1和str2,如果第一個字符串與第二個字符串相等,輸出str1=str2,如果第一個字符串大於第二個字符串,輸出str1>str2,如果第一個字符串小於第二個字符串,輸出str1 < str2。
輸入
第1行為第一個字符串。
第2行為第二個字符串。
輸出
在一行輸出比較後的結果。例如"abc"與"abc"相等,輸出為abc=abc,如果"ab"小於"abc”,輸出ab < abc。
*/
#include <iostream>
#include <string>
using namespace std;
int main()
{
 void strcompare(string str1,string str2);
 string str1,str2;
 cin>>str1>>str2;
 strcompare(str1,str2);
 return 0;
}
void strcompare(string str1,string str2)
{
 if(str1==str2)
  cout<<str1<<"="<<str2<<endl;
 if(str1<str2)
  cout<<str1<<"<"<<str2<<endl;
 if(str1>str2)
  cout<<str1<<">"<<str2<<endl;
}


 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved