工资管理系统c语言源代码
“工资管理系统c语言源代码”相关的资料有哪些?“工资管理系统c语言源代码”相关的范文有哪些?怎么写?下面是小编为您精心整理的“工资管理系统c语言源代码”相关范文大全或资料大全,欢迎大家分享。
学生管理系统 c语言源代码
学生管理系统 c语言源代码
#include <stdio.h>
#include <dos.h>
#include <string.h>
#include <stdlib.h>
#include <malloc.h>
#define SIZE 8
struct student
{
char name[20];
char num[15];
int score[5];
float ave;
struct student *next;
}stu[SIZE],temp,s;
void shuru()
{
int i,j,sum,length,flag=1,a;
FILE *fp;
while(flag==1)
{
printf("Define a range>class number:");
scanf("%d",&a);
printf("Input the total number of the class(<a):");
scanf("%d",&length);
if(length<a)
flag=0;
}
for(i=0;i
c语言教师工资管理系统
C语言程序设计 课程设计报告
设计题目:教师工资管理系统
班 级 学 号 姓 名 指导教师 起止时间 2010-10-26 至 2010-12-26
设计任务
信息,包括:教师号、姓名、性别、单位名称、家庭住址、联系电话、基本工资、津贴、生活补贴、应发工资、电话费、水电费、房租、所得税、卫生费、公积金等。读者可以输入教师信息、插入教师信息、删除教师信息、浏览教师信息、查询教师信息和修改教师信息。同时读者可以将之前录入的教师信息保存下来,然后关闭程序后,再次打开后只需加载教师信息就可以了。 更加方便以后程序。
评语(教师填写)
目 录
设计任务 ............................................................................................................
C语言教师工资管理系统
C语言教师工资管理系统源代码
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <conio.h>
/*函数声明*/
void input(); // 此函数功能是输入教师信息
int menu();//此函数是一个菜单
//学号:410109060328
struct data
{
int year;
int month;
int day;
};
struct teacher
{
char num[15];
char name[30];
struct data bir;
char sex;
float jbgz;
float jt;
};
int menu()
{
int n;
printf("1. 实现教师信息的录入\n");
printf("2. 求每个教师的总工资,并输出\n");
printf("3. 按总工资从高到低排序,输出教师信息\n");
printf("4. 查找指定姓名的教师信息,若不存在,给出提示信息\n");
printf("5. 查找基本工资最高的教师信息\n");
c语言图书管理系统源代码
课程设计
//******************************************* //图书管理系统v1.0 作者:何星霖 //2016年1月5日
//******************************************* //头文件
#include //*********************************************** //结构体 //*********************************************** //时间 typedef struct t { int year; int month; int day; }TIME; //图书信息 typedef struct book { char no[5]; char name[31]; char author[21]; char publish[25]; char sort[21]; char publish_date[14]; char ISBN[18]; TIME wareroom_dat
C语言 课程设计 教师工资管理系统(职工工资管理系统)
课程设计 教师工资管理系统
运行平台:VC6.0(其他平台未经测试,不一定保证有效)
制作者:弓箭 中南大学 信息科学与工程学院
源代码如下:
#include #define LEN sizeof(struct teacher) struct teacher { int num; char name[20]; char sex[20]; char workplace[50]; char address[50]; long phone; double de_salary; double de_jintie; double de_shenghuobutie; double yingfa_salary; double cost_phone; double cost_water_elec; double cost_rent; double cost_tax; double cost_weisheng; double cost_gongjijin; double cost_all; double shifa_salary; struct teache
C语言 课程设计 教师工资管理系统(职工工资管理系统)
课程设计 教师工资管理系统
运行平台:VC6.0(其他平台未经测试,不一定保证有效)
制作者:弓箭 中南大学 信息科学与工程学院
源代码如下:
#include #define LEN sizeof(struct teacher) struct teacher { int num; char name[20]; char sex[20]; char workplace[50]; char address[50]; long phone; double de_salary; double de_jintie; double de_shenghuobutie; double yingfa_salary; double cost_phone; double cost_water_elec; double cost_rent; double cost_tax; double cost_weisheng; double cost_gongjijin; double cost_all; double shifa_salary; struct teache
c语言源代码
acm经典百题
#include
职工的信息管理系统C语言源代码
实用标准文案
#include int num; char name[20]; char sex; int age; char xueli[30]; int wage; char addr[30]; char tel[20]; }em[100]; /*定义一个结构体*/ void menu(); void input(); void save(int); void display(); void del(); void add(); void search(); void search_num(); void search_xueli(); void search_tel(); void modify(); /*定义各函数*/ void main() {menu(); int n,flag; char a; do { printf(\请选择你需要操作的步骤(1--7):\\n\ scanf(\ if(n>=1 && n<=7) { flag=1; break; } else { flag=0; printf(\您输入有误,请重新选择!\
C语言课设职工工资管理系统
山西大学软件学院
程序设计基础 课程设计报告书
题目: 职工工资管理系统
指导教师: 亢临生 班 级: 软件工程1611 姓 名: 李国栋 学 号: 2016028***** 课设时间: 2017.6.20 成 绩
二○一七年六月
课 程 设 计 任 务 书
题 目 职工工资管理系统 一、设计内容及要求 一个职工的工资信息包含姓名、ID号、基本工资、职务工资、岗位津贴、医疗保险、公积金。编写程序实现对职工工资的录入、显示、修改、查询、保存等功能。 参考数据 ID号 姓名 基本工资 职务工资 津贴 医疗保险- 公积金- 总工资 01 张望 1286 794 198 109 135 2034 02 李明 1185 628 135 94 114 1740 03 王小民 895 438 98 64 73 1294 04
C语言2048源代码
#include void Generat_picture(int d[N][N],char c[N][N][N],int s); void Control_synthesis(int a[N][N]); void add_num(int a[N][N]); void swap(int *a,int *b); int score(int a[N][N]); int moveup(int a[N][N]); int movedown(int a[N][N]); int moveleft(int a[N][N]); int moveright(int a[N][N]); int main() { int d[N][N]; char c[N][N][N]; int i,j,s=2; system(\ for(i=0; i add_num(d); Generat_picture(d,c,s); Control_synthesis(d); s=score(d);