czy19941127 发表于 2018-11-26 21:56:17

{:10_333:}

夜晚的月亮 发表于 2018-12-9 15:26:16

6666

parry123a 发表于 2018-12-9 21:50:04

学习一下

帅气如我 发表于 2018-12-15 13:21:58

6666

帅气如我 发表于 2018-12-15 14:34:06

while(j<7)
        {
                printf("第%d位投票,请写下你所支持的候选人的名字: ",j);
                scanf("%s",&ch);
                j++;
        }你漏掉了个j++了吧???

帅气如我 发表于 2018-12-15 14:35:07

不好意思 看到后面的j++了

帅气如我 发表于 2018-12-15 14:44:50

549444387@qq.co 发表于 2018-1-18 16:25
我用了结构体写的

兄弟 能发一下源码不??

utf_8 发表于 2018-12-17 18:01:59

楼主好啊。学习一下

琉璃蔷薇 发表于 2018-12-20 10:22:27

#include<stdio.h>
#include<string.h>
void main()
{
        struct
        {
                char name;
                int score;
        }condidant={{"小甲鱼",0},{"路人甲",0},{"路人乙",0}};
                printf("参与投票的有:\n");
        int i,n;
        for(i=0;i<3;i++)
        {
                printf("%s",condidant.name);
                printf("\t");
        }
        printf("\n");
        int j;
        char name;
        for(j=1;j<7;j++)
        {
                printf("第%d位投给:",j);
                gets(name);
                if(strcmp(condidant.name,name)==0)
                {
                        condidant.score++;

                }       
                if(strcmp(condidant.name,name)==0)
                {
                        condidant.score++;

                }
                if(strcmp(condidant.name,name)==0)
                {
                        condidant.score++;

                }
                printf("\n");

        }
        printf("小甲鱼的票数为:%d",condidant.score);
        printf("路人甲的票数为:%d",condidant.score);
    printf("路人乙的票数为:%d",condidant.score);
        printf("\n");
        char * max=condidant.name;
        if(condidant.score<condidant.score)
        {
                max=condidant.name;
               
       
        }

        if("condidant.score<condidant.score")

                {
                                max=condidant.name;
                }
        if(condidant.score<condidant.score)
        {
                max=condidant.name;
       
        }
        printf("获得票数最多的是%s\n",*max);


}
最后那个求获票数最多的不会,怎么破?

琉璃蔷薇 发表于 2018-12-20 10:24:32

琉璃蔷薇 发表于 2018-12-20 10:22
#include
#include
void main()


楼主好厉害{:10_282:}

yuesezhenmei 发表于 2018-12-26 13:50:11

看看

夏日浅陌 发表于 2018-12-26 18:32:25

666

花生壳 发表于 2018-12-30 15:50:02

kankan

gyemperor 发表于 2018-12-30 19:43:55

学习学习

顒琰 发表于 2019-1-6 21:55:25

fg

1175571256 发表于 2019-1-7 21:30:16

啦啦啦

wxiao2018 发表于 2019-1-15 20:33:23

学习来的

James_p 发表于 2019-1-22 14:35:13

{:5_111:}

jiangjuncmy 发表于 2019-1-22 14:56:33

看看

Txjiuge 发表于 2019-1-24 16:25:11

来的比较晚
页: 11 12 13 14 15 16 17 18 19 20 [21] 22 23 24 25 26 27 28 29 30
查看完整版本: 小甲鱼老师给的作业_投票系统!