本站提倡有节制游戏,合理安排游戏时间,注意劳逸结合。

【aermod模型源码】【抖音无限私信源码】【随心所欲指标源码】c 初级源码_c入门经典源代码

2024-12-23 23:41:45 来源:综合 分类:综合

1.c ����Դ��
2.c语言源代码是源经典aermod模型源码怎么生成的呢?
3.写C语言程序的一般步骤是怎样的
4.c语言源程序结构化程序由哪几个组成
5.网上下载的C课程设计源代码如何能运行出结果啊

c 初级源码_c入门经典源代码

c ����Դ��

       火车站售票查询系统:

       #include <conio.h>

       #include <stdio.h>

       #include <stdlib.h>

       #include <string.h>

       int shoudsave=0 ;

       int count1=0,count2=0,mark=0,mark1=0 ;

       /*定义存储火车信息的结构体*/

       struct train

       {

        char num[];/*列车号*/

        char city[];/*目的城市*/

        char takeoffTime[];/*发车时间*/

        char receiveTime[];/*到达时间*/

        int price;/*票价*/

        int bookNum ;/*票数*/

       };

       /*订票人的信息*/

       struct man

       {

        char num[];/*ID*/

        char name[];/*姓名*/

        int bookNum ;/*需求的票数*/

       };

       /*定义火车信息链表的结点结构*/

       typedef struct node

       {

        struct train data ;

        struct node * next ;

       }Node,*Link ;

       /*定义订票人链表的结点结构*/

       typedef struct people

       {

        struct man data ;

        struct people*next ;

       }bookMan,*bookManLink ;

       /* 初始界面*/

       void printInterface()

       {

        puts("

相关推荐
一周热点