`
phoenix007
  • 浏览: 436013 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表
第一原则:如果自己不能喝,丫就别开始第一口,自己端着饭碗夹了菜一边吃着去。 第二原则:如果确信自己要喝,就别装墨迹,接下来就是规矩了。 【规矩】 规矩一,酒桌上虽然“感情深,一口闷;感情浅,舔一舔”但是喝 ...
package test; public class StaticTest { public static void main(String[] args) { // fill the staff array with three Employee objects Employee[] staff = new Employee[3]; staff[0] = new Employee("Tom",40000); staff[1] = new Employee("Dick",50000); staff[2] = new Empl ...

打印日历

package test; import java.util.*; public class CalendarTest { public static void main(String[] args) { // construct d as current date //此日历对象表示了默认地区的默认时区的当前时间。 GregorianCalendar d = new GregorianCalendar(); int today = d.get(Calendar.DAY_OF_MONTH); int month = d.get(Calendar.MONTH ...
package test; import java.text.*; public class CompoundInterest { public static void main(String[] args) { final int STARTRATES = 10; final int NRATES = 6; final int NYEARS = 10; //set interest rates to 10 ... 15% double[] interestRate = new double[NRATES]; for (int i = 0; i < i ...
package test; import java.util.*; import javax.swing.*; public class LotterDrawing { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub String input = JOptionPane.showInputDialog("How many numbers do you need to draw?"); int k = I ...
下边是一个生成随机密码的代码, 在main函数中,用循环生成10个不一样的随机密码,可不知道为什么,生成的随机密码都是一样的,但是加上个循环,使时间间隔大一点就能得到不同的。 其实用Math.random() 就能达到理想效果。下边是代码: package test; import java.util.Random; public class RandomPassword { public static void main(String[] args) { int i = 0; while (i < 10) { Sy ...
Global site tag (gtag.js) - Google Analytics