摘要: package cn.jbit.nestedloops;import java.util.Scanner;/** * 输入行数打印菱形 */public class Diamond { public static... 阅读全文
posted @ 2016-11-04 23:24 穆雄雄 阅读(86) 评论(0) 推荐(0) 编辑
摘要: package cn.jbit.nestedloops;import java.util.Scanner;/** * 输入行数打印菱形 */public class Diamond { public static void main(String[] args) { int rows = 0;... 阅读全文
posted @ 2016-11-04 23:23 穆雄雄 阅读(443) 评论(0) 推荐(0) 编辑
摘要: package cn.jbit.nestedloops;import java.util.Scanner;/** * 输入行数打印菱形 */public class Diamond { public static... 阅读全文
posted @ 2016-11-04 23:23 穆雄雄 阅读(176) 评论(0) 推荐(0) 编辑
摘要: package cn.jbit.nestedloops;public class Chook { /** * 百钱买百鸡 */ public static void main(String[] args) {... 阅读全文
posted @ 2016-11-04 23:22 穆雄雄 阅读(82) 评论(0) 推荐(0) 编辑
摘要: package cn.jbit.nestedloops;public class Chook { /** * 百钱买百鸡 */ public static void main(String[] args) { int way = 1; //买法 int k = 0; //雏鸡数 for... 阅读全文
posted @ 2016-11-04 23:21 穆雄雄 阅读(416) 评论(0) 推荐(0) 编辑
摘要: package cn.jbit.nestedloops;public class Chook { /** * 百钱买百鸡 */ public static void main(String[] args) {... 阅读全文
posted @ 2016-11-04 23:21 穆雄雄 阅读(78) 评论(0) 推荐(0) 编辑
摘要: package cn.jbit.nestedloops;/** * 打印九九乘法表 */public class MulTable { public static void main(String[] args)... 阅读全文
posted @ 2016-11-04 23:18 穆雄雄 阅读(106) 评论(0) 推荐(0) 编辑
摘要: package cn.jbit.nestedloops;/** * 打印九九乘法表 */public class MulTable { public static void main(String[] args) { int rows = 9; //乘法表的行数 for(int i... 阅读全文
posted @ 2016-11-04 23:17 穆雄雄 阅读(416) 评论(0) 推荐(0) 编辑
摘要: package cn.jbit.nestedloops;import java.util.Scanner;/** * 输入行数打印等腰三角形 */public class IsoTriangle { public static void main(String[] args) { int ro... 阅读全文
posted @ 2016-11-04 23:17 穆雄雄 阅读(1384) 评论(0) 推荐(0) 编辑
摘要: package cn.jbit.nestedloops;import java.util.Scanner;/** * 输入行数打印等腰三角形 */public class IsoTriangle { public... 阅读全文
posted @ 2016-11-04 23:17 穆雄雄 阅读(48) 评论(0) 推荐(0) 编辑
摘要: package cn.jbit.nestedloops;/** * 打印九九乘法表 */public class MulTable { public static void main(String[] args)... 阅读全文
posted @ 2016-11-04 23:17 穆雄雄 阅读(34) 评论(0) 推荐(0) 编辑
摘要: package cn.jbit.nestedloops;import java.util.Scanner;/** * 输入行数打印等腰三角形 */public class IsoTriangle { public... 阅读全文
posted @ 2016-11-04 23:17 穆雄雄 阅读(113) 评论(0) 推荐(0) 编辑
摘要: package cn.jbit.nestedloops;import java.util.Scanner;/** * 输入行数打印倒直角三角形 */public class InvertRTriAngle { public static void main(String[] args) { i... 阅读全文
posted @ 2016-11-04 23:16 穆雄雄 阅读(2191) 评论(0) 推荐(0) 编辑
摘要: package cn.jbit.nestedloops;import java.util.Scanner;/** * 输入行数打印倒直角三角形 */public class InvertRTriAngle { p... 阅读全文
posted @ 2016-11-04 23:16 穆雄雄 阅读(84) 评论(0) 推荐(0) 编辑
摘要: package cn.jbit.nestedloops;import java.util.Scanner;/** * 输入行数打印倒直角三角形 */public class InvertRTriAngle { p... 阅读全文
posted @ 2016-11-04 23:16 穆雄雄 阅读(163) 评论(0) 推荐(0) 编辑
摘要: package cn.jbit.nestedloops;import java.util.Scanner;/** * 输入行数打印直角三角形 */public class RTriAngle { public s... 阅读全文
posted @ 2016-11-04 23:15 穆雄雄 阅读(282) 评论(0) 推荐(0) 编辑
摘要: package cn.jbit.nestedloops;import java.util.Scanner;/** * 输入行数打印直角三角形 */public class RTriAngle { public static void main(String[] args) { int rows... 阅读全文
posted @ 2016-11-04 23:14 穆雄雄 阅读(2804) 评论(0) 推荐(0) 编辑
摘要: package cn.jbit.nestedloops;import java.util.Scanner;/** * 输入行数打印直角三角形 */public class RTriAngle { public s... 阅读全文
posted @ 2016-11-04 23:14 穆雄雄 阅读(116) 评论(0) 推荐(0) 编辑
摘要: package cn.jbit.nestedloops;import java.util.Scanner;/** * 计算一个班的平均分 */public class AvgScore { public stat... 阅读全文
posted @ 2016-11-04 23:11 穆雄雄 阅读(113) 评论(0) 推荐(0) 编辑
摘要: package cn.jbit.nestedloops;import java.util.Scanner;/** * 计算一个班的平均分 */public class AvgScore { public static void main(String args[]){ int[] score ... 阅读全文
posted @ 2016-11-04 23:10 穆雄雄 阅读(263) 评论(0) 推荐(0) 编辑