问答详情
源自:5-1 [Linux C语言] makFile的编写

不小心把hello.c删了怎么办

不小心把hello.c删了怎么办

提问者:Pud 2018-10-29 20:17

个回答

  • qq_慕的地2027567
    2020-03-22 15:02:19

    #include<stdio.h>

    #include "max.h"

    #include "min.h"

    //include"max.c"

    int main()

    {

        int a1=99;

        int a2=22;

        int minNu=min(a1,a2);

        int maxNu=max(a1,a2);

        printf("the max value is %d\nthe min value is %d\n",maxNu,minNu);

        return 0;

    }

    源码在这,复制就行

  • feibenren
    2018-11-01 08:42:44

    重写呗