统计字符串中字母n的个数
时间: 2023-08-29 20:11:55 浏览: 94
请问您需要什么编程语言的代码呢?以下是Python和Java的示例代码:
Python代码:
```
string = input("请输入字符串:")
count = 0
for i in string:
if i == 'n' or i == 'N':
count += 1
print("字母n的个数为:", count)
```
Java代码:
```
import java.util.Scanner;
public class CountN {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("请输入字符串:");
String string = scanner.nextLine();
int count = 0;
for (int i = 0; i < string.length(); i++) {
if (string.charAt(i) == 'n' || string.charAt(i) == 'N') {
count++;
}
}
System.out.println("字母n的个数为:" + count);
}
}
```
相关问题
从键盘输入一个字符串,并统计字符串中字母的个数c语言
可以使用C语言编写一个程序,从键盘输入一个字符串,并统计字符串中字母的个数。以下是一个示例代码:
```c
#include <stdio.h>
void count(char str[]) {
int count = 0;
for (int i = 0; str[i] != '\0'; i++) {
if ((str[i] >= 'a' && str[i] <= 'z') || (str[i] >= 'A' && str[i] <= 'Z')) {
count++;
}
}
printf("字母的个数为:%d\n", count);
}
int main() {
char str[100];
printf("请输入一个字符串:");
scanf("%s", str);
count(str);
return 0;
}
```
这段代码中,我们首先定义了一个`count`函数,该函数接收一个字符串作为参数。在函数内部,我们使用一个循环遍历字符串的每个字符,如果字符是字母(大写或小写),则将计数器加1。最后,我们在主函数中通过`scanf`函数从键盘输入一个字符串,并调用`count`函数来统计字母的个数。最后,我们将结果打印出来。
如何统计字符串中小写字母的个数?
可以使用Python内置函数islower()来判断一个字符是否为小写字母,然后遍历字符串,统计小写字母的个数即可。以下是Python代码示例:
```python
def count_lower(s):
count = 0
for c in s:
if c.islower():
count += 1
return count
s = "Hello, World! This is a Test String."
n = count_lower(s)
print("The number of lowercase letters is:", n) # 输出:The number of lowercase letters is: 18
```
阅读全文