/*** * @Title: test_while* @Description: 该方法的主要作用:while循环,输出100个我爱编程* @param 设定文件 * @return 返回类型:void * @throws*/@Testpublic void test_while(){int i = 1;while (i<=100) {System.out.println("第"+i+"次,我爱编程!");i++;}}/*** * @Title: test_isHege* @Description: 该方法的主要作用:测试是否合格* @param 设定文件 * @return 返回类型:void * @throws*/@Testpublic void test_isHege(){String str = "";Scanner scanner = new Scanner(System.in);System.out.println("是否完成存息任务?(y|n):");str = scanner.next();while(!"y".equals(str)||"Y".equals(str)){System.out.println("上午阅读教材!");System.out.println("下午上级编程!");System.out.println("是否完成存息任务?(y|n):");str = scanner.next();}System.out.println("完成学习任务了!");}/*** * @Title: test_dowhile* @Description: 该方法的主要作用:doWhile* @param 设定文件 * @return 返回类型:void * @throws*/@Testpublic void test_dowhile(){Scanner scanner = new Scanner(System.in);String str = "";do {System.out.println("上午编写程序!");System.out.println("是否完成任务(y|n):");str = scanner.next();} while ("y".equals(str)||"Y".equals(str));System.out.println("完成任务");}