菜鸟学java
文章平均质量分 72
陈思有
I can
展开
-
求 a+aa+aaa+…….+aaaaaaaaa=? 其中a为1至9之中的一个数,项数也要可以指定。
//2012年12月24日import java.util.Scanner;public class An { /** * @param args */ public An(int a, int n) { this.a = a; this.n = n; } public void Calculate() { int i; int s = 0;原创 2012-12-24 19:36:11 · 3765 阅读 · 0 评论 -
使用GregorianCalendar输出日历
//使用GregorianCalendar输出日历package Test;import java.util.Calendar;import java.util.Date;import java.util.GregorianCalendar;import java.util.Scanner;public class Test { public static void main(St原创 2013-03-26 20:37:47 · 2098 阅读 · 0 评论 -
选择排序
//选择排序package com.SelectSort;public class SelectSort { public static void main(String[] args) { int[] array = new int[]{15,27,34,12,15,22,48,1}; outPut(array); selectAscending(array);原创 2013-03-20 22:17:55 · 704 阅读 · 0 评论 -
插入排序法
//插入排序package com.InsertSort;public class InsertSort { public static void main(String[] args) { int[] array = new int[]{3,69,42,18,1,25}; outPut(array); //输出数组 insertAscending(array);原创 2013-03-20 21:42:05 · 2616 阅读 · 0 评论 -
冒泡排序法
//冒泡排序法package com.test;public class Sort { public static void main(String[] args) { int[] array = new int[]{2,4,2,5,3,67,4}; outPut(array); bubbingAscending(array); bubbingDscending(arra原创 2013-03-19 21:25:54 · 740 阅读 · 0 评论 -
2. 计算出1900年1月1日至当前日期之间总共间隔多少天,将其除以7取余数,该结果即为当月第一天是星期几,按日历格式输出
//输入一个日期,2010-10 输出该月的月历://**********************************// 10月//**********************************//日 一 二 三 四 五 六// 1 2//3 4 5 6 7 8 9//10 11 12 13 14 15 16//17 18 19 20 21 22 23 /原创 2013-03-19 11:18:31 · 12931 阅读 · 1 评论 -
有一个字符串s,t,d,g,h,m怎么把他转换成数组然后排序!(split的使用)
//有一个字符串s,t,d,g,h,m怎么把他转换成数组然后排序!//2013年3月12日public class Sort { private static String str = "a,t,b,c,a,e,f"; public static void main(String[] args) { String str2[] = str.split(","); //以','作为字原创 2013-03-13 16:16:14 · 2208 阅读 · 0 评论 -
某公司的雇员分为以下若干类
/*2012年12月28日 某公司的雇员分为以下若干类:Employee:这是所有员工总的父类, 属性:员工的姓名,员工的生日月份。 方法:getSalary(int month) 根据参数月份来确定工资, 如果该月员工过生日,则公司会额外奖励100元。SalariedEmployee:Employee原创 2012-12-28 01:17:41 · 17539 阅读 · 0 评论 -
实现在一个数组指定位置添加元素和删除元素的功能
/*实现在一个数组指定位置添加元素和删除元素的功能。 *1、数组容量问题? *2、添加元素前后数组中元素的变化 *3、删除元素前后数组中元素的变化 *2012年12月26日 */import java.util.Scanner;public class Array { public Array() { } public void Init() { System.原创 2012-12-26 23:25:12 · 9799 阅读 · 0 评论 -
有n个整数,使其前面各数顺序后移m个位置,最后m个变为前面的m个
/*有n个整数,使其前面各数顺序后移m个位置,最后m个变为前面的m个* 2012年12月25日(今天圣诞节,极其无聊)*/import java.util.Scanner;public class BackNum { public BackNum(int n, int m) { this.n = n; this.m = m; } //初始化数组 public voi原创 2012-12-25 21:37:35 · 2801 阅读 · 0 评论