选票统计(一)(结构体专题)C语言

#include <stdio.h> #include <stdlib.h> #include<string.h> typedef struct Vote//定义一个结构体 {     char name[50];     int votes; } VOTE; int main() {     char ch[20];     int i,n,j;     VOTE p[5]=     {    
相关文章
相关标签/搜索