zoukankan      html  css  js  c++  java
  • 第二个C语言代码

    有问题,还没找出哪里出错了

    输入一串字符,问号结束
    统计1~9各出现的次数

    ***************************************************************************************
     
    #include<stdio.h>
    void main()
    {
        char *ps,s;
        int i,n,m;
        char str[1000];
        printf("请输入字符串(以问号结尾) ");
        //gets(str);

        scanf("%s",&str);
       
    for(m=0;m<=9;m++)
    {
        s=m;
        ps=str;
            for (i=0;*ps!='';i++)
                {
                    ps=str+i;
                    for(n=0;*ps==s && *ps!='?';)
                        n++;
                printf("字符串中%d",m);
                printf("的个数是%d ",n);
                }
    }
    }

    ****************************************************************************************


    #include<stdio.h>
    void main()
    {
        char *ps,s;
        int i,n,m;
        char str[1000];
        printf("请输入字符串(以问号结尾) ");
        //gets(str);

        scanf("%s",&str);
       
    for(m=0;m<=9;m++)
    {
        s=m;
        ps=str;
        for(n=0;*ps==s && *ps!='?';n++)
        {
            for (i=0;*ps!='';i++)
                ps=str+i;
        }
        printf("字符串中%d",m);
        printf("的个数是%d ",n);
    }
    }


    欢迎访问我的的博客:www.wshunli.com

    -------------------

    已迁移文章:

    VMware 12安装Mac OS X 10.10

    http://www.wshunli.com/posts/65583447.html 

    Tomcat安装配置

    http://www.wshunli.com/posts/c8d48a24.html 

  • 相关阅读:
    原生JS实现简易随机点名功能
    react 字父组件传值
    关于react组件传值问题
    轮波图
    烟花
    this的详解
    封装多元素多属性的链式缓冲
    留言板设计的流程,拖动窗口
    运动的小球
    运动的小球自动变键盘控制
  • 原文地址:https://www.cnblogs.com/wangshunli/p/3972275.html
Copyright © 2011-2022 走看看