测试代码如下
- import java.util.Scanner;
- public class LuRu
- {
- public static void main(String[] args)
- {
- Scanner sc=new Scanner(System.in);
- int num=sc.nextInt();
- if(num>10)
- {
- System.out.print('\b');
-
- System.out.println("haha");
- }
-
-
- }
-
- }
复制代码
这个代码输入一个大于10的数字后,haha在数字的下面。怎样使 haha打印在输入数字的后面
|
|