- //求字符串长度
- #include"stdafx.h"
- #include<iostream>
- using namespace std;
- void main(){
- char s[201];
- int i = 0;
- cout << "Please enter a string(ended with enter):" << endl;
- cin.getline(s, 200); //cin.getline()的使用
- while (s[i]) //利用了字符串以‘\0‘结束的特点;
- i++;
- cout << "The string length is:" << i << endl;
- }
数组-----求字符串长度
原文:http://www.cnblogs.com/jiaojienku/p/4649818.html