不知道发这里对不对,大家有兴趣可以试试(虽然肯定不会有人去试的……),真的写了一节课
package ítheim.test;
import java.util.Scanner;
public class OwTest {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("来试试你在OW中的台词吧,请输入一个0-100的整数");
int temp = sc.nextInt();
//限制语句
if (temp < 0 || temp > 100) {
temp += (int) (Math.random() * 100);
if (temp % 2 != 0) {
System.out.println("真的不试试你在Ow中的台词么~");
}else
System.out.println("别担心,还能发生什么更糟糕的事呢!/斜眼");
} else {
//随机运算
temp += (int) (Math.random() * 100);
int i = (temp > 100) ? temp - 100 : temp;
//System.out.println(i);
if (i >= 0 && i < 10) {
System.out.println("我看见你了!");
} else if (i >= 10 && i < 20) {
System.out.println("spa!spa!");
} else if (i >= 20 && i < 30) {
System.out.println("别担心,交给我吧~");
} else if (i >= 30 && i < 40) {
System.out.println("冻住,不洗澡!");
} else if (i >= 40 && i < 50) {
System.out.println("五十以到!");
} else if (i >= 50 && i < 60) {
System.out.println("医生姐姐来了");
} else if (i >= 60 && i < 70) {
System.out.println("天降正……啊……");
} else if (i >= 70 && i < 80) {
System.out.println("外面明明有那么多东西可以让我炸上天,而我却还在这瞎转悠!");
} else if (i >= 80 && i < 90) {
System.out.println("有基友开我裤链");
} else {
System.out.println("到霸霸这来~");
}
}
}
}
|
|