데이터 구조 알고리즘 구현 2

1759 단어 includeemployee
직원 급여 조회 또는 수정
/*              */
#include "stdio.h"
#include "stdlib.h"
void main()
{
    int  Employee[10]={27000,32000,32500,27500,30000,29000,31000,32500,30000,26000};
    int  Index;
    int  NewSalary;
    int  Selection;
    while(1)
    {
        printf("===================================================
"); printf("=Simple Employee Salary Management System =
"); printf("=1.Display employee salary =
"); printf("=2.Modify employee salary =
"); printf("=3.Quit =
"); printf("Please input your choose:"); scanf("%d",&Selection); if(Selection==1||Selection==2) { printf("**Please input the employee number:"); scanf("%d",&Index); if(Index<10) { printf("**Employee Number is %d.",Index); printf("The Salary is %d
",Employee[Index]); } else { printf("##The error employee number!
"); exit(1); // stdlib.h , . 1 } } switch(Selection) { case 1: break; case 2: printf("**Please input new salary:"); scanf("%d",&NewSalary); Employee[Index]=NewSalary; break; case 3: exit(1); break; } printf("
"); } }

좋은 웹페이지 즐겨찾기