码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2015-07-16 00:33:23      阅读:162      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!