美文网首页
结构体的使用

结构体的使用

作者: 壹顾倾城 | 来源:发表于2020-10-13 13:16 被阅读0次
    /********************************
     * 程序来源:林老师课课通
     *  章      节:7.1 结构体
     * 程序名称:225页
     * 作    者:tiaya@qq.com
     * 运行测试:通过
     *******************************/
    #include <iostream>
    #include <cstdio>
    #include <cstring>
    
    #define SIZE 100
    
    using namespace std;
    
    struct student{
        string name;     // char name[20];
        char sex;
        int age;
        double weitht;
    };
    
    typedef student stu;
    stu s[SIZE];
    
    int main(int argc, char **argv)
    {
    
        int n = 0;
        cin >> n;
        for(int i=0; i<n; i++) {
            cin >> s[i].name >> s[i].sex >> s[i].age >> s[i].weitht;
        }
    
        for(int i=0; i<n; i++) {
            cout << s[i].name << "," << s[i].sex <<"," << s[i].age <<"," << s[i].weitht << endl;
        }
    
        system("pause");
        return 0;
    }
    

    测试:
    输入数据:

    5
    a1 1 12 45.44
    a2 0 13 45.67
    a3 1 14 56.78
    a4 0 14 45.00
    a5 1 15 57.90
    

    输出数据:

    a1,1,12,45.44
    a2,0,13,45.67
    a3,1,14,56.78
    a4,0,14,45
    a5,1,15,57.9
    

    相关文章

      网友评论

          本文标题:结构体的使用

          本文链接:https://www.haomeiwen.com/subject/rprvpktx.html