自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(11)
  • 收藏
  • 关注

原创 实现一个工资管理系统

一、内容 1.题目《小型公司工资管理系统》设计 2.设计说明与要求 (1) 公司主要有5类人员:文秘、技术经理、技术员、销售员、销售经理。要求存储这些人的职工号、姓名、月工资、年龄、性别等信息。 人的职工号、姓名、月工资、年龄、性别等信息。 (2) 工资的计算方法 A、技术经理:固定月薪为5000元,业绩分三个等级,每级1000元奖金。 B、技术员:工作时间*小时工资(40/小时);

2014-06-21 16:19:55 3643 1

原创 第七周作业

例5.1   #include using namespace std; void display() {  cout } int main() {  display();  return 0; }

2014-04-27 14:20:18 552 1

原创 第六周作业

习题1 #include #include using namespace std; int main() { int a[5]; int i,j,t; cout<<"please input 5 numbers:\n"; for(i=0;i<5;i++) cin>>a[i];

2014-04-20 16:44:22 456 2

原创 第六周作业

例4.101.#include 02.using namespace std; 03. 04.int main() 05.{ 06. int a[10]; 07. int i; 08. for(i=0;i<10;i++) //给所有的数组元素赋初值 09. a[i]=i*2+2; 10. f

2014-04-16 11:09:59 422 1

原创 第三章作业

作业一 习题5 #include using namespace std; int main() { double i=1.0,e=1.0; int n=1; for(;i>=1E-6;n++) {

2014-04-01 19:22:22 460 2

原创 第三章作业

作业一 习题5 #include using namespace std; int main() { double i=1.0,e=1.0; int n=1; for(;i>=1E-6;n++) { i=i/n;

2014-04-01 14:23:23 414 1

原创 第四周作业

作业一习题5 #include using namespace std; int main() { double i=1.0,e=1.0; int n=1; for(;i>=1E-6;n++) { i=i/n; e+=i; } cout<<

2014-04-01 14:09:11 515 1

原创 第三章作业

作业一习题5 #include using namespace std; int main() { double i=1.0,e=1.0; int n=1; for(;i>=1E-6;n++) { i=i/n; e+=i; } cout

2014-04-01 13:28:13 426 1

原创 计算一元二次方程组

// 计算一元二次方程 #include #include //函数调用 using namespace std; int main() { float a ,b ,c; double anto ; cout << "请输入二次项系数 a :";

2014-03-26 11:13:41 585 2

原创 第三周作业

作业一 2.1 /*******布尔类型使用举例*********/ #include #include using namespace std; int main() { bool flag = true; cout<<flag<<endl; cout<<boolalpha<<flag<<en

2014-03-23 00:37:34 462 3

原创 第二周作业

作业一#include //编译预处理命令 using namespace std; //使用标准名空间 std /*以下是主函数*/ int main() //主函数 { cout<<"班级:自动1124班"<<endl; co

2014-03-16 18:24:32 486 1

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除