码迷,mamicode.com
首页 > 微信 > 详细

数据选择小程序

时间:2018-08-20 19:46:42      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:选择   i++   char   bsp   cos   struct   void   printf   rtm   

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

void main()
{
    struct staff
    {
        char name[20];
        char department[20];
        int salary;
        int cost;
    }worker[3]=
    {
    {"Xu_Guo","part1",800,200},
    {"Wu_Xia","part2",1000,300},
    {"Li_Jun","part3",1200,350}
    };
    int i;
    char xname[20];
    printf("\nInput the worker\‘s name:");
    scanf("%s",xname);
    for(i=0;i<3;i++)
        if(strcmp(xname,worker[i].name)==0)
        {
            printf("* * * * %s * * * *",xname);
            printf("\n  salary:%6d",worker[i].salary);
            printf("\n  cost:%6d",worker[i].cost);
            printf("\n  payed:%6d",worker[i].salary-worker[i].cost);
        }
}

数据选择小程序

标签:选择   i++   char   bsp   cos   struct   void   printf   rtm   

原文地址:https://www.cnblogs.com/xderbyy/p/9507485.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!