上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页
摘要: 先占个位子,持续更新Android Studio,SDK,常用工具下载Android Studio个性化设置Android Studio 常用快捷键 版权声明:本文为博主原创文章,未经博主允许不得转载。 阅读全文
posted @ 2015-08-08 08:45 Thereisnospon 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 基本:1.JAVA程序所有内容放在类中2.源代码文件名必须与公共类名相同3.main方法必须声明为public注释:1.单行注释 // 内容2.多行注释/*内容*/3.文档注释 /**文档*/会自动生成文档数据类型:类型 字节int 4short 2long 8byte 1float 4double... 阅读全文
posted @ 2015-07-19 10:58 Thereisnospon 阅读(167) 评论(0) 推荐(0) 编辑
摘要: import java.math.BigDecimal;import java.math.BigInteger;import java.math.RoundingMode;import java.util.Scanner;import javafx.scene.transform.Scale;imp... 阅读全文
posted @ 2015-07-19 09:39 Thereisnospon 阅读(179) 评论(0) 推荐(0) 编辑
摘要: CREATE DATABASE my;/*创建数据库*/SHE DATABASES/*查看所有数据库*/use my;/*切换数据库*/CREATE TABLE car( cid INT NOT NULL PRIMARY KEY AUTO_INCREMENT,/*整型,非空,主键,自动增长*/ n... 阅读全文
posted @ 2015-07-19 09:29 Thereisnospon 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 登录CREATE DATABASE S1use DATABASE S1__________________________________保存文件:--->d:mysql.sqlCREATE TABLE s1.book(id VARCHAR(30),name VARCHAR(30),price NU... 阅读全文
posted @ 2015-05-27 17:33 Thereisnospon 阅读(84) 评论(0) 推荐(0) 编辑
摘要: #include#include#include#define M 3#define MAX 300FILE*rf;void open(){ rf=fopen("tree.txt","r");}void off(){ fclose(rf);}void in(char *ch){ f... 阅读全文
posted @ 2015-04-29 19:49 Thereisnospon 阅读(234) 评论(0) 推荐(0) 编辑
摘要: #include#include#includetypedef struct node{ int data; struct node*lchild,*rchild;}tnode,*tree;tree creat(){ int x; tree t; scanf("%d",... 阅读全文
posted @ 2015-04-25 16:16 Thereisnospon 阅读(242) 评论(0) 推荐(0) 编辑
摘要: #include#include#includetypedef struct node{ int data; struct node*lchild,*rchild;}tnode,*tree;tree creat(){ int x; tree t; scanf("%d",... 阅读全文
posted @ 2015-04-25 16:15 Thereisnospon 阅读(361) 评论(0) 推荐(0) 编辑
摘要: #include#include#includetypedef struct node{ int data; struct node*lchild,*rchild;}tnode,*tree;tree creat(){ int x; tree t; scanf("%d",... 阅读全文
posted @ 2015-04-25 16:15 Thereisnospon 阅读(290) 评论(0) 推荐(0) 编辑
摘要: #include#include#includetypedef struct node{ int data; int mark; struct node*lchild,*rchild,*parent;}tnode,*tree;tree creat(){ int x; t... 阅读全文
posted @ 2015-04-25 16:13 Thereisnospon 阅读(142) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页