首页 旅游资讯 线路攻略 景点大全 国内游 境外游 美食特产

从键盘上输入一个字符串,统计字符串中的字符个数。不许使用求字符串长度...

发布网友 发布时间:2024-10-24 02:50

我来回答

4个回答

热心网友 时间:9分钟前

#include<stdio.h>
void main()
{
int i,n,m=0;
char a[100];
printf("请输入字符串:\n");
gets(a);
for(i=0;a[i]!='\0';i++)
m++;
printf("字符串的长度为:%d\n",m);
}

热心网友 时间:4分钟前

#include<stdio.h>
void main()
{
int n;

char str[100];

scanf("%s%n",str,&n);//注意%n不是%d,因此只需输入字符串即可得到n的值

printf("%s,字符串长度n=%d",str,n);

}

热心网友 时间:1分钟前

#include<stdio.h>
main()
{
char s;int i;
scanf("%c",s);
while
[s!='\n';i++;i=0;]
printf("%d",i);
}

热心网友 时间:6分钟前

Private Sub Command1_Click()
tmp = InputBox("请输入字符串", , "")
c = Len(tmp)
dx = 0
For i = 1 To c
If Mid(tmp, i, 1) >= "A" And Mid(tmp, i, 1) <= "Z" Then
dx = dx + 1
End If
Next
MsgBox "大写字母个数:" & dx
End Sub

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com