本文共 1242 字,大约阅读时间需要 4 分钟。
C++中的新成份——string类型
(1)#include#include using namespace std;int main( ){ char str1[50],str2[50],temp[50]; cout<<"please input strings:"; cin>>str1>>str2; if(strcmp(str1, str2)>0) { strcpy(temp, str1); strcpy(str1, str2); strcpy(str2, temp); } cout<<"now, they are: "; cout< <<", "< <
(2)
#include#include using namespace std;int main( ){ string str1,str2,temp; cout<<"please input strings:"; cin>>str1>>str2; if(str1>str2) { temp=str1; str1=str2; str2=temp; } cout<<"now, they are: "; cout< <<", "< <
(3)
#include#include using namespace std;int main( ){ char *str1, *str2,*temp; cout<<"please input strings:"; cin>>str1>>str2; if(strcmp(str1, str2)>0) { strcpy(temp, str1); strcpy(str1, str2); strcpy(str2, temp); } cout<<"now, they are: "; cout< <<", "< <
字符串数组
void select_sort(string array[],int n) { int i,j,k, string t; for(i=0; i
转载地址:http://etkja.baihongyu.com/