本题目要求读入不含空格的字符串,然后输出这个字符串中小写字母的个数
时间: 2023-05-24 19:06:00 浏览: 168
EXAMPLE-LV8.6.zip_labview 字符串
思路:
1. 读入字符串
2. 遍历字符串中每一个字符,如果是小写字母,则计数器加1
3. 输出计数器的值
Python代码:
```python
s = input() # 读入字符串
count = 0 # 初始化计数器
for c in s: # 遍历字符串中每个字符
if c.islower(): # 如果字符是小写字母
count += 1 # 计数器加1
print(count) # 输出计数器的值
```
C++代码:
```cpp
#include <iostream>
using namespace std;
int main() {
string s;
cin >> s;
int count = 0;
for (int i = 0; i < s.size(); i++) {
if (s[i] >= 'a' && s[i] <= 'z') {
count++;
}
}
cout << count << endl;
return 0;
}
```
阅读全文