#include int main(){ typedef struct date{ int year; int mouth; int day; }Date; typedef struct student{ int age; Date birthday; Date inday; }Student; S...
分类:
其他好文 时间:
2014-11-29 21:26:50
阅读次数:
150
create database 练习题gouse 练习题gocreate table Student(Sno char(3) primary key,Sname char(8) not null,Ssex char(2) not null,Sbirthday date ,Class char(5) ...
分类:
数据库 时间:
2014-11-29 18:55:20
阅读次数:
243
mysql主键操作删除表主键: alter table student drop primary key;增加表主键: alter table student add primary key(id);重新设置主键自增(前提是需要先执行删除表主键语句): alter table student ...
分类:
数据库 时间:
2014-11-29 17:27:07
阅读次数:
226
c语言复习了一遍 ios 现在知道@interface声明类 :后面接的是类 student *str=[[student alloc]init] 分配空间 NSString *text 设置Lable中的文本内容UIFont font设置字体 UIColor *textcolor 设置文本颜色
分类:
其他好文 时间:
2014-11-29 15:52:24
阅读次数:
221
public class Test3 { public static void main(String[] args) { String s1 = "I am"; String s2 = " a student"; String s3; ...
分类:
其他好文 时间:
2014-11-29 10:22:59
阅读次数:
178
这是在练习中使用的表:--1.select dno from dept where dname='数学系'select sno,sname from student where dno=(select dno from dept where dname='数学系');--2.求选修了课程的学生的学号...
分类:
数据库 时间:
2014-11-28 21:25:52
阅读次数:
517
作者: gw------------------------数据查询------------------------------(select sno ,avg(grade) as avg_grade from sc group by sno) as st2--select student.sno ...
分类:
数据库 时间:
2014-11-28 21:24:30
阅读次数:
306
数据库表关系图数据库脚本建表脚本 1 /*学生表*/ 2 CREATE TABLE Student 3 ( 4 StuNO NVARCHAR(12) NOT NULL PRIMARY KEY,/*学号*/ 5 StuName nvarchar(20) not null,/*姓名*/...
分类:
数据库 时间:
2014-11-28 16:14:26
阅读次数:
428
双向循环链表 和 单向循环链表 查找循环节点 思路都是一样。 快慢指针查找法。 理论可参考c 链表之 快慢指针 查找循环节点typedef struct Student_Double{ char name[10]; int point; struct Student_Double...
分类:
其他好文 时间:
2014-11-28 15:40:33
阅读次数:
157
如何使用KVC存取对象属性呢?看个示例1、使用KVC定义一个Student类,继承于NSObject。.h文件#import @interface Student : NSObject{ NSString *name;}@end.m文件#import "Student.h"@implement...
分类:
其他好文 时间:
2014-11-27 23:30:59
阅读次数:
354