求编程大神:怎么设计c++程序使在键盘上输入任意一个字符串,输出该字符串,并统计输入的字符个数

2025-01-05 05:21:26
推荐回答(3个)
回答1:

#include 
#include 
using namespace std;
int main()
{
char str[100];
cout<<"输入一个字符串"<gets(str);
int i=0,k=0;
for(i=0;iif(str[i]!=' ')
k++;
cout<<"输入的字符有"<}

 

回答2:

#include 
#include 
using namespace std;

int main()
{
string str;
cin >> str;
cout << "输入的字符串为:" << str << "  长度为" << str.size() << endl;
return 0;
}

回答3:

#include "stdafx.h"//vc++6.0加上这一行.
#include
#include
using namespace std;
void main(void){
string str("");
char ch;
cout << "Type a string...\nstr=";
while((ch=getchar())!='\n') str+=ch;
cout << "The string is " << str << ".\n" << "The length = " << str.length() << ".\n";
}