1.查詢、刪除、更新資料庫
select 『 from student;
insert into student (name,password) values(『123』,』xingming』);/查詢
update student set name=『wanglaoshi』 where id=1 /更新
delete from student where id=3; /刪除
2.模擬鬥地主
1.準備一副牌(54)
list poker=new arraylist<>();
//花色
/*string colors=new string;
string number=new string;
for(string color:colors)
}pokers.add(「小王」);
pokers.add(「大王」);
system.out.println(pokers);
//2.洗牌(打亂牌序)
collections.shuffle(pokers) /靜態 static
system.out.println(pokers); /寫工具類
/ 呼叫類中方法的方式有兩種
list dipai=new arraylist<>();
random random=new random();
for(int i=0;i<3;i++)
system.out.println(pokers);
system.out.println(dipai);
list lilaoshi=new arraylist<>();
list wanglaoshi=new arraylist<>();
list malaoshi=new arraylist<>();
for(int i=0;i0)else if(mod1)else
}system.out.println(「lilaoshi: 」+lilaoshi);
system.out.println(「wanglaoshi: 」+wanglaoshi);
system.out.println(「malaoshi: 」+malaoshi);
int dizhu = rndom.nextint(3)
if (dizhu0)else if(dizhu1)else
system.out.println(「lilaoshi: 」+lilaoshi);
system.out.println(「wanglaoshi: 」+wanglaoshi);
system.out.println(「malaoshi: 」+malaoshi);
}
3.jdb
public class testjdb
//7.關閉資源
resultset.close();
preparedstatement.close();
connection.close();
}
第四天學習
一 權重關係 樣式表的權重關係 內聯樣式表的權重最大!內部和外部樣式的權重,和書寫的前後順序有關!放在後面的會把放在前面的樣式覆蓋掉 網頁的布局 先做上下排版 再做左右排版 從外往裡 二 css語法 選擇符選擇符 選擇符就是給標籤起名字 型別選擇符 標籤選擇符 所有的html標籤可以直接當做選擇符進...
C Primer學習第四天
第四章 陣列和指標 c 語言提供了兩種類似於vector和迭代器型別的低階復合型別 陣列和指標。與vector型別相似,陣列也可以儲存某種型別的一組物件 而它們的區別在於,陣列的長度是固定的。陣列一經建立,就不允許新增新的元素。指標則可以像迭代器一樣用於遍歷和檢查陣列中的元素。現代c 程式應盡量使用...
C 學習第四天
匿名類 原理 編譯器根據初始化值推斷變數的真正型別.var只能在初始化變數時使用 編譯器要根據初始值固化其正真型別 例如var myint 100 編譯器會推斷出myint為int型別。而var myint myint 0 錯誤。因為編譯器無法知道myint的具體型別,也就無法後續對其進行各種操作了...