stringtools.java

来自「飞行游戏;类似于是男人就20秒」· Java 代码 · 共 34 行

JAVA
34
字号
package fly;/** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2004</p> * <p>Company: </p> * @author not attributable * @version 1.0 */public class StringTools {  protected StringTools() {  }  public static String timeOpinion(long gametime){    if(gametime<10){      return "Do you play with your foot?";      //return "i can't belive,your are a game master";    }else if(gametime<16){      return "come boy, you can do it!";    }else if(gametime<20){      return "what a pity! try again.";    }else if(gametime<25){      return "very well, you are a real man.";    }else if(gametime<30){      return "i know you have talent of this game.";    }else if(gametime<40){      return "i can't belive, your are a game master.";    }else{      return "oh my god, are you a human?";    }  }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?