鱼C论坛

 找回密码
 立即注册
查看: 1844|回复: 4

求助一个学生系统的问题

[复制链接]
发表于 2021-3-11 21:31:25 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#include<stdio.h>
#include<stdlib.h>
#include<string.h>

typedef struct 
{
    int day;
    int month;
    int year;
}date;//结构体名的定义 自定义类型符

typedef struct
{
    int num;
    char name[20];
    date birthday;

}student;//student 等价于 struct 一个没有结构名的结构体
student stu;
student *pstu = &stu;

void InputStudent()
{
    char choice;
    FILE *fp;
    fp = fopen("C:\\Users\\yyp\\Desktop\\stuscore.txt","a+");
    if(fp == NULL)
    {
        printf("Error!\n");
        exit(0);
    }
    printf("Please input num:");
    scanf("%d",&pstu->num);
    printf("Please input name:");
    scanf("%s",pstu->name);
    printf("Please input birthday:");
    scanf("%d%d%d",&pstu->birthday.year,&pstu->birthday.month,&pstu->birthday.day);//输入数据
    fprintf(fp,"%d %s %d-%d-%d\n",//存完换行
    pstu->num,pstu->name,pstu->birthday.year,pstu->birthday.month,pstu->birthday.day);//把数据存txt文件中
    fclose(fp);
    printf("Continue to input? y or n:\n");
    fflush(stdin);
    scanf("%c",&choice);
    if(choice == 'y')
    {
        InputStudent();
    }
}

在VScode运行报错
C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/../lib/libmingw32.a(lib64_libmingw32_a-crt0_c.o):crt0_c.c:(.text.startup+0x2e): undefined reference to `WinMain'
collect2.exe: error: ld returned 1 exit status

大佬看看
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-3-11 22:00:45 | 显示全部楼层
调用exit()需要include <Windows.h>头文件
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-3-12 08:55:15 From FishC Mobile | 显示全部楼层
shshabc 发表于 2021-3-11 22:00
调用exit()需要include 头文件

不用的,stdlib.h就可以了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-3-12 10:03:14 | 显示全部楼层
你的main函数入口呢?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-3-12 10:37:13 | 显示全部楼层
人中仙 发表于 2021-3-12 10:03
你的main函数入口呢?

看看我另一个 这个不完整
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-15 02:49

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表