统计字符串中数字的个数并输出用C语言写出
5个回答
展开全部
哎,虽然没有大洋,我还是帮帮你吧。
#include "stdio.h"
void main()
{
char str1,str2,c;
int sum=0,i;
printf("please input a string:");
gets(str1);
for(i=0;(c=str[i])!='\0';i++)
if(c>='0' && c<='9')
{ sum+=1;
str2[sum-1]=c;/*将符合条件的字符存放到字符数组str2中*/
}
printf("there are %d numbers in the string",sum); /*用来输出统计的个数*/
pintf("%s",str2);/*输出具体的数字字符*/
}
#include "stdio.h"
void main()
{
char str1,str2,c;
int sum=0,i;
printf("please input a string:");
gets(str1);
for(i=0;(c=str[i])!='\0';i++)
if(c>='0' && c<='9')
{ sum+=1;
str2[sum-1]=c;/*将符合条件的字符存放到字符数组str2中*/
}
printf("there are %d numbers in the string",sum); /*用来输出统计的个数*/
pintf("%s",str2);/*输出具体的数字字符*/
}
展开全部
#include <stdio.h>
#include <string.h>
int main()
{
char a[100];
unsigned int i,count=0;
printf("输入一字符串\n");
gets(a);
for(i=0;i<=strlen(a)-1;i++)
if(a[i]>='0'&&a[i]<='9')
count++;
printf("字符串中数字的个数是%d\n",count);
return 0;
}
#include <string.h>
int main()
{
char a[100];
unsigned int i,count=0;
printf("输入一字符串\n");
gets(a);
for(i=0;i<=strlen(a)-1;i++)
if(a[i]>='0'&&a[i]<='9')
count++;
printf("字符串中数字的个数是%d\n",count);
return 0;
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
C语言字符串的学习,输入指定字符串,并且计算字符串的位数
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
if(a[i]>='0'&&a[i]<='9')
count++;
count++;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include <stdio.h>
#include <string.h>
#include <stdbool.h>
int main(int argc, const char * argv[])
{
char str[100];// 存储输入的字符串
printf("请输入一个随机字符串:\n");
scanf("%s", str);
char strTemp[100];// 存储字符串中的字符
int countTemp[100];// 存储对应字符的数量
int index = 0;// 当前要存储的字符索引
for (int i = 0; i<strlen(str); i++) {// 循环遍历字符串
// 赋值前,先去找有没有出现的字符
bool isHas = false;
for (int j = 0; j<strlen(strTemp); j++) {
if (strTemp[j] == str[i]) {// 如果找到,就将对应位置的数字加1
countTemp[j]++;
isHas = true;
}
}
if (!isHas) {
strTemp[index] = str[i];
countTemp[index] = 1;
index++;
}
}
printf("输出:\n");
for (int i = 0; i<strlen(strTemp); i++) {// 循环遍历输出结果
printf("%c 出现过 %d 次\n", strTemp[i], countTemp[i]);
}
return 0;
}
#include <string.h>
#include <stdbool.h>
int main(int argc, const char * argv[])
{
char str[100];// 存储输入的字符串
printf("请输入一个随机字符串:\n");
scanf("%s", str);
char strTemp[100];// 存储字符串中的字符
int countTemp[100];// 存储对应字符的数量
int index = 0;// 当前要存储的字符索引
for (int i = 0; i<strlen(str); i++) {// 循环遍历字符串
// 赋值前,先去找有没有出现的字符
bool isHas = false;
for (int j = 0; j<strlen(strTemp); j++) {
if (strTemp[j] == str[i]) {// 如果找到,就将对应位置的数字加1
countTemp[j]++;
isHas = true;
}
}
if (!isHas) {
strTemp[index] = str[i];
countTemp[index] = 1;
index++;
}
}
printf("输出:\n");
for (int i = 0; i<strlen(strTemp); i++) {// 循环遍历输出结果
printf("%c 出现过 %d 次\n", strTemp[i], countTemp[i]);
}
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |