/** * * @Title: test_while * @Description: 該方法的主要做用:while循環,輸出100個我愛編程 * @param 設定文件 * @return 返回類型:void * @throws */ @Test public void test_while(){ int i = 1; while (i<=100) { System.out.println("第"+i+"次,我愛編程!"); i++; } } /** * * @Title: test_isHege * @Description: 該方法的主要做用:測試是否合格 * @param 設定文件 * @return 返回類型:void * @throws */ @Test public 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 */ @Test public 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("完成任務"); }