上一页 1 ··· 4 5 6 7 8
摘要: import java.util.*; import java.io.*; public class Playingcards { public static void main(String[] args) { ArrayList color = new ArrayList();//扑克牌的颜色 color.add("黑桃"); color.add("红心"); colo... 阅读全文
posted @ 2018-11-12 12:49 WINDZLY 阅读(251) 评论(0) 推荐(0)
摘要: 1 import java.awt.event.ActionEvent; 2 import java.awt.event.ActionListener; 3 import java.awt.BorderLayout; 4 import java.awt.EventQueue; 5 import ja 阅读全文
posted @ 2018-11-12 10:57 WINDZLY 阅读(273) 评论(0) 推荐(0)
摘要: 1 import java.io.File; 2 import java.io.FileNotFoundException; 3 import java.io.PrintStream; 4 import java.util.ArrayList; 5 import java.util.Iterator 阅读全文
posted @ 2018-11-11 22:24 WINDZLY 阅读(591) 评论(0) 推荐(0)
摘要: #include #define maxn 1000005 typedef long long ll; using namespace std; clock_t start,stop; ll a[maxn]; void kk() { for(int i = 1; i <= 1000000; i ++) { a[i] = i; } } int ma... 阅读全文
posted @ 2018-11-10 18:22 WINDZLY 阅读(126) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8