#include#includeusing namespace std;struct Student{ char ID[15]; int score,final_rank,location_number,local_rank; //分数,总排名,考场号,场内排名}STU[30010];bool...
分类:
其他好文 时间:
2015-03-01 14:24:00
阅读次数:
127
Zhejiang University has 40000 students and provides 2500 courses. Now given the registered course list of each student, you are supposed to output the...
分类:
其他好文 时间:
2015-03-01 13:02:38
阅读次数:
153
Zhejiang University has 40000 students and provides 2500 courses. Now given the student name lists of all the courses, you are supposed to output the ...
分类:
其他好文 时间:
2015-03-01 01:31:14
阅读次数:
180
//// main.m// 06-类的本质//// Created by apple on 13-8-8.// Copyright (c) 2013年 itcast. All rights reserved.//#import #import "Person.h"#import "Student.h...
分类:
其他好文 时间:
2015-02-28 21:33:26
阅读次数:
228
Student(S#,Sname,Sage,Ssex) 学生表S#:学号;Sname:学生姓名;Sage:学生年龄;Ssex:学生性别Course(C#,Cname,T#) 课程表C#,课程编号;Cname:课程名字;T#:教师编号SC(S#,C#,score) 成绩表S#:学号;C#,课程编号;s...
分类:
数据库 时间:
2015-02-28 10:08:05
阅读次数:
193
显示变量名libname saslib "H:\ sas";/*varnum表示按观测位置排序变量名,默认为按字母顺序*/data saslib.Student; input name $ Age Score; datalines;李四 25 85.6王五 27 98.12张三 30 78;proc contents varnum data=saslib.Student;r...
分类:
其他好文 时间:
2015-02-27 18:29:38
阅读次数:
140
连接外部数据CONNECT TO 数据库类型选项 连接ACCESS:proc sql;connect to access as db(path=”e:\xx.mdb”);连接excel:proc sql;connect to EXCEL(PATH="k:\docs\机器学习第3版\底稿\src\sas\student_excel.xlsx" GETNAMES=YES);SELECT * FROM...
分类:
其他好文 时间:
2015-02-26 21:41:24
阅读次数:
132
一、设有一数据库,包括四个表:学生表(Student)、课程表(Course)、成绩表(Score)以及教师信息表(Teacher)。四个表的结构分别如表1-1的表(一)~表(四)所示,数据如表1-2的表(一)~表(四)所示。用SQL语句创建四个表并完成相关题目。表1-1数据库的表结构表(一)Stu...
分类:
数据库 时间:
2015-02-26 21:29:07
阅读次数:
298
#include#includeusing namespace std;struct Student{ int mID; int grade[4]; //0对应平均A,1对应C,2对应M,3对应E}STU[2010];char course[4]={'A','C','M...
分类:
其他好文 时间:
2015-02-26 01:20:39
阅读次数:
133
(一)点语法1.利用点语法替代set方法和get方法方法调用Student *stu = [Student new];[stu setAge:100];int age = [stu age];点语法stu.age = 100;int age = stu.age;2.点语法的本质>其实点语法的本质还是...
分类:
移动开发 时间:
2015-02-24 15:07:19
阅读次数:
163