上一页 1 ··· 7 8 9 10 11 12 13 14 15 下一页
摘要: package com.bao; public class Print1 { int x; void output() { if(x==1) { System.out.println("ABCDEFGHIJKLMNOPQRSTUVWXYZ"); } if(x==2) { System.out.pri 阅读全文
posted @ 2016-09-17 10:31 削肾客 阅读(524) 评论(0) 推荐(0) 编辑
摘要: Print类: package com.bao; public class Print { int g,s,b; void outPut() { for(int i=100;i 阅读全文
posted @ 2016-09-17 10:22 削肾客 阅读(2229) 评论(0) 推荐(0) 编辑
摘要: Student类: package com.bao; public class Student { int stuNo;String name,sex;int age,weight; Student(int s,String n,String se,int a,int w) { stuNo=s;na 阅读全文
posted @ 2016-09-17 09:55 削肾客 阅读(12161) 评论(0) 推荐(0) 编辑
摘要: 17.从键盘上输入一个正整数n,请按照以下五行杨辉三角形的显示方式, 输出杨辉三角形的前n行。请采用循环控制语句来实现。 (三角形腰上的数为1,其他位置的数为其上一行相邻两个数之和。) 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 package com.b 阅读全文
posted @ 2016-09-17 09:11 削肾客 阅读(3258) 评论(0) 推荐(0) 编辑
摘要: //分类 package com.bao; public class Shuchu { int[]yi=new int[50]; String[][]er=new String[10][10]; void shuchu() { for (int i=0;i 阅读全文
posted @ 2016-09-16 22:54 削肾客 阅读(1105) 评论(0) 推荐(0) 编辑
摘要: package com.bao; public class Erweim { public static void main(String[] args) { int[][]a={{3,2,6},{6,8,2,10},{5},{12,3,23}}; int max=a[0][0],min=a[0][ 阅读全文
posted @ 2016-09-16 21:32 削肾客 阅读(658) 评论(0) 推荐(0) 编辑
摘要: ![](http://images2015.cnblogs.com/blog/1009605/201609/1009605-20160916203344773-1298917075.png) 阅读全文
posted @ 2016-09-16 20:34 削肾客 阅读(513) 评论(0) 推荐(0) 编辑
摘要: package com.xinjian; public class Chazifu { public static void main(String[] args) { String a="fsfrertqcvhfgsteg"; if(a.indexOf("f")==0) { System.out. 阅读全文
posted @ 2016-09-16 20:20 削肾客 阅读(214) 评论(0) 推荐(0) 编辑
摘要: package com.xinjian; public class Jiami { public static void main(String[] args) { String a="我一直都是个好人"; String b=a.replace("我","你"); String c=b.replac 阅读全文
posted @ 2016-09-16 20:20 削肾客 阅读(252) 评论(0) 推荐(0) 编辑
摘要: package com.bao; import java.util.Random; import java.util.Scanner; public class Yanzhengma1 { public static void main(String[] args) { String a="0123 阅读全文
posted @ 2016-09-16 20:17 削肾客 阅读(448) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 下一页