import java.util.Scanner;
/**
* While和DO-while循环语句的使用
* 输入字符串并显示在控制台,重复这一过程,知道输入bye为止。
*
*/
public class DO_while {
/**
* @param args
*/
public static void main(String[] args) {
//扫描器
Scanner input = new Scanner(System.in);
//从键盘输入的字符串
String str = "";
//while
do {
System.out.println("请输入字符串:" );
str = input.next();
System.out.println("您输入的是: "+ str);
} while(!"bye".equals(str));
System.out.println("输入结束");
}
}
/**
* While和DO-while循环语句的使用
* 输入字符串并显示在控制台,重复这一过程,知道输入bye为止。
*
*/
public class DO_while {
/**
* @param args
*/
public static void main(String[] args) {
//扫描器
Scanner input = new Scanner(System.in);
//从键盘输入的字符串
String str = "";
//while
do {
System.out.println("请输入字符串:" );
str = input.next();
System.out.println("您输入的是: "+ str);
} while(!"bye".equals(str));
System.out.println("输入结束");
}
}