从键盘上输入一个字符串,统计字符串中的字符个数。不许使用求字符串长度函数strlen()。 5
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);
}
void main()
{
int n;
char str[100];
scanf("%s%n",str,&n);//注意%n不是%d,因此只需输入字符串即可得到n的值
printf("%s,字符串长度n=%d",str,n);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
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
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
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include<stdio.h>
main()
{
char s;int i;
scanf("%c",s);
while
[s!='\n';i++;i=0;]
printf("%d",i);
}
main()
{
char s;int i;
scanf("%c",s);
while
[s!='\n';i++;i=0;]
printf("%d",i);
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询