题目如下:You are given two eggs, and access to a 100-storey building. Both eggs are identical. The aim is to find out the highest floor from which an egg will not break when dropped out of a window from th...
分类:
其他好文 时间:
2015-03-30 16:31:05
阅读次数:
160
(2)用salary[50]有限制,实际人数少时,会浪费空间,人数多了,无法完成任务。在main()中先输入职工人数,作为参数传递给输入职工工资的成员函数,然后利用动态分配内存的机制,开辟一个大小正好的连续空间,完成上面的工作。/* Copyright (c) 2014, 烟台大学计算机学院
* All rights reserved.
* 文件名称:test.cpp
* 作者:陈丹妮
*...
分类:
编程语言 时间:
2015-03-29 12:23:31
阅读次数:
148
设计一个工资类(Salary
class Salary 0
{
private:
double salarys[50]; //多人的工资
int number; //实际人数
};
要设计的成员函数有:
void set_salarys( ):输入职工工资(输入-1标志着工资输入结束),工资保存到salary数组中,实际人数保存到number中;
void...
分类:
编程语言 时间:
2015-03-28 14:26:45
阅读次数:
137
一:过滤选择器 注意:过滤选择器是以":"开头的,但是表单选择器也是以":"开头的。 1.基本过滤 2.内容过滤 3.可见性过滤 4.属性过滤 5.子元素过滤 :nth-child()选择器是很常用的子元素过滤选择器 (1):nth-child(even)能选...
分类:
Web程序 时间:
2015-03-27 23:33:38
阅读次数:
244
INSERT insert into employee (id,name,gender,birthday,entry_date,job,salary,resume) values (null, '张飞',1,'1989-08-27','2007-08-27','打手',998.0,'真的...
分类:
其他好文 时间:
2015-03-22 10:32:47
阅读次数:
221
??
/*
* Copyright (c) 2015, 烟台大学计算机学院
* All rights reserved.
* 文件名称:test.cpp
* 作 者:冷基栋
* 完成日期:2015年 3 月 21 日
* 版 本 号:v1.0
*/
问题
(3)手工输入工资?!太让人不能忍受了。现给出包含了不足500个职工工资的文件salary.txt(下载)...
分类:
编程语言 时间:
2015-03-22 09:18:22
阅读次数:
149
题目:
Given a linked list, remove the nth node from the end of list and return its head.For example,
Given linked list: 1->2->3->4->5, and n = 2.After removing the second node from the end, the linked...
分类:
其他好文 时间:
2015-03-21 12:41:53
阅读次数:
115
create table Emp(eid char(20) primary key,ename char(20),age integer check (age > 0),did char(20),salary float,)create table Dept(did char(20) primary...
分类:
数据库 时间:
2015-03-20 17:48:51
阅读次数:
408
笔试题设有关系EMP(ENO,ENAME,SALARY,DNO)其中各属性的含义依次为职工号、姓名、工资、所在部门号, 以及关系DEPT(DNO,DNAME,MANAGER)其中各含义依次为部门号、部门名称、部门经理的职工号1.请通过SQL语句创建表EMP、DEPT。create table emp...
分类:
数据库 时间:
2015-03-19 21:47:36
阅读次数:
322
problem:
Given a linked list, remove the nth node from the end of list and return its head.
For example,
Given linked list: 1->2->3->4->5, and n = 2.
After removing the second node from the...
分类:
其他好文 时间:
2015-03-19 20:25:31
阅读次数:
157