1、开始数据结构如下:2、转为如下图:使用如下SQL语句:---横向转丛向select name '姓名', max(case when course='语文' then score end) as '语文', max(case when course='数学' then sco...
分类:
数据库 时间:
2014-08-08 12:23:35
阅读次数:
297
一、数据表
Student(S#,Sname,Sage,Ssex) 学生表 S#:学号;Sname:学生姓名;Sage:学生年龄;Ssex:学生性别
Course(C#,Cname,T#) 课程表 C#,课程编号;Cname:课程名字;T#:教师编号
SC(S#,C#,score) 成绩表 S#:学号;C#,课程编号;score:成绩
Teacher(T#,Tname) 教师表 T#:教师编号; Tname:教师名字...
分类:
数据库 时间:
2014-08-06 22:56:32
阅读次数:
450
C语言学习宝典(5)结构体:将不同类型的数据组合成为一个有机的整体,这个整体就是一个结构体。例如:Struct student{ Int name; Char sex; Float score;};使用方法:类型名 成员名;一般形式:Struct{ 成员列表;}变量名表列;结构体变量的引用:结构体变...
分类:
其他好文 时间:
2014-08-05 00:13:18
阅读次数:
280
(1)采用IF语句嵌套:#include using namespace std;int main(){ int a; cout>a; if(a>100||a=90&&a=80&&a=70&&a=60&&ausing namespace std;int main(){ int score,t...
分类:
其他好文 时间:
2014-08-04 17:06:17
阅读次数:
178
如果我们有一个表Student,包含下面字段与数据:drop table student;create table student(id int primary key,name nvarchar2(50) not null,score number not null);insert into st...
分类:
其他好文 时间:
2014-08-01 22:57:42
阅读次数:
318
Student(S#,Sname,Sage,Ssex)学生表Course(C#,Cname,T#)课程表SC(S#,C#,score)成绩表Teacher(T#,Tname)教师表create tableStudent(S#varchar(20),Snamevarchar(10),Sageint,S...
分类:
数据库 时间:
2014-07-31 12:43:06
阅读次数:
426
Problem Description
Alice and Bob are playing a game. There are two piles of cards. There are N cards in each pile, and each card has a score. They take turns to pick up the top or bottom card from...
分类:
其他好文 时间:
2014-07-29 15:03:28
阅读次数:
248
#include
main()
{
int n,k;
float score,sum,ave;
for(n=1;n<3;n++)
{ sum=0.0;
for(k=1;k<=4;k++)
{scanf("%f",&score);
sum+=score;
}
ave=sum/4.0;
printf("NO%d:%f\n",n,ave);
}
}
sum=0.0的位置...
分类:
其他好文 时间:
2014-07-26 02:04:36
阅读次数:
201
#include #include #include using namespace std;int main(){ char s[100]; int i,j,n,ans; cin>>n; getchar(); while (n>0) { n--; ...
分类:
其他好文 时间:
2014-07-26 01:46:56
阅读次数:
221
题目:hdu4882-ZCC Loves Codefires
题目大意:给出n个问题,每个问题有两个参数,一个ei(所要耗费的时间),一个ki(能得到的score)。每道problem需要耗费:(当前耗费的时间)*ki,问怎样组合问题的处理顺序可以使得耗费达到最少。
解题思路: e1 e2
k1 1 2
k2 3 ...
分类:
其他好文 时间:
2014-07-24 23:05:43
阅读次数:
219