上一页 1 ··· 5 6 7 8 9
摘要: package com.hanqi; public class maopaopaixu { public static void main(String[] args) { int[] a=new int[]{9,4,6,1,5,3,12,16,7,22,18,17,0,78,45}; System 阅读全文
posted @ 2016-02-29 16:55 1011042043 阅读(305) 评论(0) 推荐(0) 编辑
摘要: 1、编写Java程序,创建二维数组arr[][],将二维数组中所有元素的和输出 package com.hanqi; public class shuzulianxi { public static void main(String[] args) { int[][] arr=new int[][] 阅读全文
posted @ 2016-02-27 21:56 1011042043 阅读(170) 评论(0) 推荐(0) 编辑
摘要: package com.hanqi; public class shuzulianxi { public static void main(String[] args) { //创建一个一维数组arr[],并将其遍历输出。 int[] arr=new int[10]; int n=1; System 阅读全文
posted @ 2016-02-27 11:42 1011042043 阅读(816) 评论(0) 推荐(0) 编辑
摘要: package com.hanqi; public class lingxing { public static void main(String[] args) { for(int m=1;m<=10;m++) { //输出空格 for(int n=9;n>=m;n-- ) { System.ou 阅读全文
posted @ 2016-02-26 16:24 1011042043 阅读(628) 评论(0) 推荐(0) 编辑
摘要: 1:每张纸的厚度为0.08毫米,折纸多少次,高度能超过8848米 public class xunhuanyuju { public static void main(String[] args) { int i=0;//i为次数 double h= 0.00008;//h为厚度 while (h 阅读全文
posted @ 2016-02-25 21:59 1011042043 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 第一题 Pg62--2编写Java程序,输入两个变量,运用三元运算符判断两个变量是否相等,若不等,求出两个数中较大的 import java.util.Scanner; public class asd { public static void main(String[] args) { // TO 阅读全文
posted @ 2016-02-23 16:59 1011042043 阅读(131) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9