原创 【html】html 的基本標籤的用法

1.<html></html> 2.<head></head> 3.<title></title> 4.<body bgcolor=color text=color link=color vlink=color    alink=col

原创 【ACM】成績轉換

#include<stdio.h> #include<malloc.h> int main() { int score,i=0; int length=1; int *p = (int *)malloc(sizeof(int)

原创 【數據結構】馬踏棋盤的遍歷問題

#include<stdio.h> #include<stdlib.h> #define STACK_INIT_SIZE 100 //存儲空間初始分配量 #define STACK_ADD_SIZE 10 //存儲空間分配增量 typ

原创 【mysql】表的創建以及基本操作

1.表的創建   create table tablennme(object type);    如川建一個book的表   create table book(book_id int(5),