博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C++语言基础 例程 字符串类
阅读量:6208 次
发布时间:2019-06-21

本文共 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/

你可能感兴趣的文章
深入框架本源系列 —— Virtual Dom
查看>>
您有一个上云锦囊尚未领取!
查看>>
Java Web的web.xml文件作用及基本配置(转)
查看>>
马约拉纳费米子:推动量子计算的“天使粒子”
查看>>
使用ActionTrail Python SDK
查看>>
数据显示,中国近一半的独角兽企业由“BATJ”四巨头投资
查看>>
log日志轮转--logrotate
查看>>
安装输入发
查看>>
用户配置相关文件
查看>>
kvm vnc的使用,鼠标漂移等
查看>>
linux中fcntl()、lockf、flock的区别
查看>>
gitlab 2.7版本升级到2.8
查看>>
获取Extjs文本域中的内容
查看>>
对‘初学者应该选择哪种编程语言’的回答——计算机达人成长之路(38)
查看>>
Redis-3.2主从复制与集群搭建 推荐
查看>>
在.NET中使用SMTP发送邮件
查看>>
Unity Camera的两种模式
查看>>
3.5. Ticket
查看>>
越狱第一至五季/全集迅雷下载
查看>>
从Mysql slave system lock延迟说开去
查看>>