摘要: Cat类: package com.bao; public class Cat { String name,color;int age; void show() { System.out.println(name); } void shout() { System.out.println("王"); 阅读全文
posted @ 2016-09-17 10:42 削肾客 阅读(1002) 评论(0) 推荐(0) 编辑
摘要: 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) 编辑