選票統計(一)(結構體專題)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]=     {    
相關文章
相關標籤/搜索