Fish_Seven
2021-06-22 14:59
#include <stdio.h>
struct xuesheng
{
int math;
int english;
}
int main(int argc,char **argv)
{
struct xuesheng chengji[50];
chengji[15].math = 120;
chengji[15].english = 115;
return 0;
}
结构体定义完后有个分号
趣味 C++ 入门
31200 学习 · 189 问题
相似问题