首页 > 编程语言 > 详细

数组-----求字符串长度

时间:2015-07-16 00:32:36      阅读:269      评论:0      收藏:0      [点我收藏+]
  1. //求字符串长度
  2. #include"stdafx.h"
  3. #include<iostream>
  4. using namespace std;
  5. void main(){
  6. char s[201];
  7. int i = 0;
  8. cout << "Please enter a string(ended with enter):" << endl;
  9. cin.getline(s, 200); //cin.getline()的使用
  10. while (s[i])        //利用了字符串以‘\0‘结束的特点;
  11. i++;
  12. cout << "The string length is:" << i << endl;
  13. }

数组-----求字符串长度

原文:http://www.cnblogs.com/jiaojienku/p/4649818.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!