zoukankan      html  css  js  c++  java
  • 多文件调用(函数、结构体)

    main.m文件

    int main(int argc, const char * argv[])

    {

        struct student stu1;

        struct student stu2 = {"李四",16,98};//////extern

        struct student stu3 = {"王五",21,99};

        strcpy(stu1.name,"张三");

        stu1.age = 17;

        stu1.grade = 96.5;

        struct student *p = &stu1;

        strcpy((*p).name, "潘俊飞");

        strcpy(p->name, "郭刚");

        struct student array[3] = {stu1,stu2,stu3};

        int length = sizeof(array)/sizeof(struct student);

        printf("结构体数组的长度:%d ",length);

        struct student *pstruct = array;

        pstruct = &array[0];

        (pstruct+1)->age = 30;

        //printf("%d ",array[1].age);

        sortAge(pstruct,length);

        print(pstruct,length);

        return 0;

    }

    Funcation.h文件

    struct student{

        char name[30];

        int age;

        float grade;

    }stu1;

    void sortAge(struct student *a,int count);

    void print(struct student *a,int count);

    Funcation.m文件

    #import "Funcation.h"

    //@implementation Funcation

    //

    //@end

    void sortAge(struct student *p,int count){

        for (int i=0; i<count-1; i++) {

            for (int j=0; j<count-1-i; j++) {

                if (((p+j)->age)>((p+j+1)->age)) {

                    struct student temp = *(p+j+1);

                    *(p+j+1) = *(p+j);

                    *(p+j) = temp;

                }

            }

        }

        

    }

    void print(struct student *a,int count){

        printf("学生信息列表: ");

        for (int i=0; i<count; i++) {

            printf("%s %d %.2f ",(a+i)->name,(a+i)->age,(a+i)->grade);

        }

    }

  • 相关阅读:
    lrzsz踩坑记
    《西安游记》
    《这世界那么多人》
    Go 日常开发常备第三方库和工具
    Go 里的超时控制
    菜鸟轻松拿offer: 软件测试工程师面试秘笈
    Django 练习教程
    JasperReports入门教程(五):分组打印
    并发的特性和锁的原理,分类
    面试高频算法
  • 原文地址:https://www.cnblogs.com/jyq-blog/p/4435008.html
Copyright © 2011-2022 走看看