我的游戏机世界上第一个游戏机文件时GAME这是什么游...

打开游戏时总出game380,游戏打不开,还弹出个乱码网站让我***什么东西
把电脑的本地连接断开,然后重连就行了。
断网重连 一次不行多试几次
可输入10000个汉字
上传图片:
[经验值&50可以上传图片]
可输入50个汉字
同类未解决问题
同类已解决问题java学习(22)
package com.rmsi.
public class TestGame
public static void main(String[] args)
Hunter hunter = new Hunter();
Monster monster = new Monster();
for(i=0;;i++)
System.out.println(&\n第&+i+&回合战斗开始&);
hunter.fight(monster);
System.out.println(&第&+i+&回合战斗结束&);
System.out.println(&战斗统计&);
hunter.show();
monster.show();
if(monster.life&=0)
monster.isLive=
System.out.println(&\n战胜方是&+hunter.name);
System.out.println(&\n战争统计&);
System.out.println(hunter.name+&与&+ monster.type+&战斗&+i+&次&);
package com.rmsi.
public class Monster
public String type=&吸血鬼&;
public int life=1000;
public boolean isLive=
public void injured()
System.out.println(this.type+&被打中了&);
this.life -= 100;
public void show()
System.out.println(this.type+&还有&+this.life+&点血&);
// System.out.println(this.isLive);
package com.rmsi.
public class Hunter
public String name = &?士&;
public int life = 1000;
public String weapon = &屠龙刀&;
public boolean isLive =
public void fight(Monster monster)
System.out.println(this.name + &手持& + this.weapon+&杀向&+monster.type);
monster.injured();
public void show()
// System.out.println(this.life);
//System.out.println(this.isLive);
怀念过去学习的日子。
参考知识库
* 以上用户言论只代表其个人观点,不代表CSDN网站的观点或立场
访问:44173次
排名:千里之外
原创:34篇
(1)(2)(1)(1)(1)(1)(1)(3)(1)(2)(2)(3)(2)(17)

参考资料

 

随机推荐