佑白


私信TA

用户名:dotcpp0705661

访问量:75

签 名:

等  级
排  名 46550
经  验 311
参赛次数 0
文章发表 2
年  龄 0
在职情况 学生
学  校 重庆
专  业

  自我简介:

TA的其他文章

基因相关性
浏览:18

参考代码:

#include <stdio.h>

#include <stdlib.h>

#include <string.h>

int main()

{

    char b,a[100000];

    int i,j,c;

    gets(a);

    for(i=0; i<strlen(a); i++)

    {

        c=0;

        for(j=0; j<strlen(a); j++)

        {

            if(a[i]==a[j])

            {

                c++;

            }

        }

        if(c==1)

        {

            b=a[i];

            printf("%c",b);

            return 0;

        }

    }

    printf("no");

    return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »