A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 空白。 初级黑马   /  2017-10-20 22:46  /  2030 人查看  /  5 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

package com.itheima;

import java.util.Scanner;

public class XinRenBaoDao {
        public static void main(String[] args) {
                System.out.println("\t"+"      欢迎来到黑马");
                System.out.println("\t"+"欢迎来到Java世界");
                Scanner sc = new Scanner(System.in);
                System.out.print("请输入“新人报道”:");
                String s = sc.next();
                while (true) {
                        if (!s.equals("新人报道")) {
                                System.out.print("输入有误,请重新输入:");
                                s = sc.next();
                        } else {
                                System.out.println("报道成功");
                                break;
                        }
                }
                sc = new Scanner(System.in);
                System.out.print("请输入“签到”:");
                String ss = sc.next();
                while (true) {
                        if (!ss.equals("签到")) {
                                System.out.print("输入有误,请重新输入:");
                                ss = sc.next();
                        } else {
                                System.out.println("签到成功");
                                System.out.println("小手一抖,经验到手");
                                break;
                        }
                }
        }
}

5 个回复

倒序浏览
回复 使用道具 举报
加油
回复 使用道具 举报
厉害了啊
回复 使用道具 举报
选择很棒
回复 使用道具 举报
代码不错
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马