"王者荣耀"英雄选择系统项目

时间:2021-11-09 21:52:10

"王者荣耀"英雄选择系统

先欣赏几张英雄图片"王者荣耀"英雄选择系统项目"王者荣耀"英雄选择系统项目"王者荣耀"英雄选择系统项目"王者荣耀"英雄选择系统项目

"王者荣耀"英雄选择系统项目

"王者荣耀"英雄选择系统项目

下面让我们一起进入正题!

package Wangzexitong;


import java.util.Scanner;


/**
 * @author 杨洋
 *  项目:"王者荣耀"英雄选择系统
 *  时间:2018.5.25
 */
public class Wangzexitong {
public static void main(String[] args) {
System.out.println("***********欢迎进入'王者荣耀'英雄选择系统**********");
System.out.println("1.请选择登录方式:");
System.out.println("2.请选择你的服务器:");
System.out.println("3.请选择游戏模式:");
System.out.println("4.请选择你的英雄:");
System.out.println("5.退出游戏!");
System.out.println("请选择你的操作");
Scanner sca=new Scanner(System.in);
int i=sca.nextInt();
switch(i) {
case 1:dengLu();
case 2:fuWuQi();
case 3:moShi();
case 4:yingXiong();
case 5:System.out.println("退出游戏");
}
}
//选择登录方式
public static void dengLu() {
System.out.print("1.与微信好友玩");
System.out.println("2.与QQ好友玩");
Scanner sca=new Scanner(System.in);
int a=sca.nextInt();
switch(a) {
case 1:;wx();break;
case 2:qq();break;
}
}
public static void wx() {
System.out.println("请输入你的微信账号:");
Scanner sca=new Scanner(System.in);
String a=sca.next();
System.out.println("请输入你的微信密码:");
String b=sca.next();
}
public static void qq() {
System.out.println("请输入你的QQ账号:");
Scanner sca=new Scanner(System.in);
String a=sca.next();
System.out.println("请输入你的QQ密码:");
String b=sca.next();
}
//选择你的服务器
public static void fuWuQi() {
System.out.println("1.手Q61区 不羁豪气 2.手Q63区 吸血之镰 3.手Q65区 风暴巨剑 4.手Q67区 狂瀑双刃 5.手Q69区 破魔之镰 6.手Q233区 特种小队");
Scanner sca=new Scanner(System.in);
int c=sca.nextInt();
switch(c) {
case 1:System.out.println("手Q61区 不羁豪气");break;
case 2:System.out.println("手Q63区 吸血之镰");break;
case 3:System.out.println("手Q65区 风暴巨剑");break;
case 4:System.out.println("手Q67区 狂瀑双刃");break;
case 5:System.out.println("手Q69区 破魔之镰");break;
case 6:System.out.println("手Q233区 特种小队");break;
default:System.out.println("你选择的服务器不存在,请重新选择:");
}
}
//请选择游戏模式
public static void moShi() {
System.out.println("请选择游戏模式(1.对战模式 2.排位赛 3.赏金联赛 4.冒险模式)");
Scanner sca=new Scanner(System.in);
int y=sca.nextInt();
System.out.println("进入匹配!");
int d=sca.nextInt();
System.out.println("等级还不够参加比赛,加油升级吧!");
int e=sca.nextInt();
System.out.println("等级还不够参加比赛,加油升级吧!");
int f=sca.nextInt();
System.out.println("等级还不够参加比赛,加油升级吧!");
/*switch(d) {
case 1:System.out.println("进入匹配!");
case 2:System.out.println("等级还不够参加比赛,加油升级吧!");
case 3:System.out.println("等级还不够参加比赛,加油升级吧!");
case 4:System.out.println("等级还不够参加比赛,加油升级吧!");
}*/
}
public static void yingXiong() {
System.out.println("请选择你的英雄(1.程咬金 2.妲己 3.后羿 4.安琪拉 5.不知火舞 6.凯 7.亚瑟)");
Scanner sca=new Scanner(System.in);
int g=sca.nextInt();
switch(g) {
case 1:System.out.println("干干干!");break;
case 2:System.out.println("请尽情吩咐妲己,主人!");break;
case 3:System.out.println("今天是周一!");break;
case 4:System.out.println("来一套王者套餐吧!");break;
case 5:System.out.println("雅蠛蝶!");break;
case 6:System.out.println("守卫长城!");break;
case 7:System.out.println("我的大宝剑早已饥渴难耐了!");break;
default :System.out.println("该英雄还没出!");
}
}
}