运用C加加编写一个程序输入一个字符串求字符串中字符的个数并输出
时间: 2024-05-06 16:16:07 浏览: 111
以下是一个简单的 C++ 程序,可以实现输入一个字符串,统计其中的字符个数并输出:
```c++
#include <iostream>
#include <string>
int main() {
std::string str;
std::cout << "请输入一个字符串:" << std::endl;
std::getline(std::cin, str);
int count = 0;
for (int i = 0; i < str.size(); i++) {
if (str[i] != ' ') { // 排除空格
count++;
}
}
std::cout << "字符个数为:" << count << std::endl;
return 0;
}
```
这个程序中,首先使用 `std::getline()` 函数读入一行字符串,然后遍历字符串中的每个字符,如果不是空格,则计数器加 1。最后输出字符个数即可。
相关问题
编写一个c加加程序 输入3个字符串按由小到大的顺序输出
好的,这个问题属于程序设计领域。以下是一个示例程序:
```
#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
int main() {
string str1, str2, str3;
cout << "请输入3个字符串:" << endl;
cin >> str1 >> str2 >> str3;
string arr[] = { str1, str2, str3 };
sort(arr, arr + 3);
cout << "按顺序输出结果为:" << endl;
for (int i = 0; i < 3; i++) {
cout << arr[i] << endl;
}
return 0;
}
```
请注意,这只是一个简单的示例程序,您可以根据自己的需求进行修改和完善。
c加加输入一个字符串和一个字符,查找并输出字符在字符串中首次出现的位置,如果没有则输出-1
下面是 C++ 的示例代码:
```cpp
#include <iostream>
#include <cstring>
using namespace std;
int main() {
char str[100];
char ch;
int pos = -1;
cout << "请输入一个字符串:" << endl;
cin.getline(str, 100);
cout << "请输入一个字符:" << endl;
cin >> ch;
for (int i = 0; i < strlen(str); i++) {
if (str[i] == ch) {
pos = i;
break;
}
}
if (pos == -1) {
cout << "字符 " << ch << " 没有在字符串中出现过!" << endl;
} else {
cout << "字符 " << ch << " 在字符串中第一次出现的位置是:" << pos << endl;
}
return 0;
}
```
首先定义了一个字符数组 `str` 和一个字符 `ch`,并且初始化 `pos` 为 -1,表示字符在字符串中未出现过。
然后通过 `cin.getline()` 函数获取用户输入的字符串,并且通过 `cin` 语句获取用户输入的字符。
接着使用 `for` 循环遍历字符串中的每一个字符,如果找到了与输入字符相同的字符,则将 `pos` 赋值为当前位置 `i`,并且结束循环。
最后根据 `pos` 的值输出对应的结果。
需要注意的是,本代码只能处理 ASCII 码字符集,如果涉及到 Unicode 字符集,需要使用更为复杂的算法来处理。
阅读全文