练习题
哦,是恶魔啊,
小白 博客为了记录学习,欢迎大神指点
展开
-
Oracle 练习题(包含物化视图,索引,分区,查询,触发器自增列)
--1,商品create table shangpin( spnum number(30) generated always as identity( start with 1 increment by 1 maxvalue 99 minvalue 1 order) , typenum number(30) , ...原创 2019-12-26 14:50:35 · 372 阅读 · 0 评论 -
各种其他的流(12.3)
// InputStream 抽象类,输入流;// FileInputStream i=new FileInputStream(file); 来源 字节 input output// DataInputStream i=new DataInputStream(inputstream); 强化处理 ,能提出基本数据类型,用的较少,曾经频繁用于网络通信// ObjectI...原创 2019-12-03 13:57:19 · 87 阅读 · 0 评论 -
IO流 练习题(12.2)
#1public static void main(String[] args) { // TODO Auto-generated method stub Scanner in=new Scanner(System.in); try { File f=new File(in.next()); if(!f.exists()){ System.out.println(...原创 2019-12-03 13:52:57 · 112 阅读 · 0 评论 -
Arraylist和Linkedlist数组和封装练习题(11.27)
public class Text01 { public static void main(String[] args) { // TODO Auto-generated method stub Scanner in=new Scanner(System.in); LinkedList<Msg> list1=new LinkedList<Msg>();...原创 2019-11-27 22:27:31 · 183 阅读 · 0 评论 -
红包思想:从无到有 新数组思想(11.22)
问题如下:结果样子:第二题 System.out.println("请输入红包数量"); while(true){ String str=in.next(); try { renshu=Integer.valueOf(str); if(renshu>0)break; else System.out.println("想不想要红包了,重写!")...原创 2019-11-24 13:15:23 · 134 阅读 · 0 评论 -
查重记录
String str="sdchiemcnskdcnslclklcdkjsd"; boolean[] boo=new boolean[str.length()];//创建一个和字符串等长的数组,保存了那些是第一次出现的数据, char[] chars=str.toCharArray(); //先搜出所有的可能性没然后创建一个数组,里面正好才能存储所有可能性。 int count=0...原创 2019-11-21 20:28:28 · 141 阅读 · 0 评论