public class Bground extends Thread { public static void main(String argv[]) { Bground b = new Bground(); b.run(); } public void start() { for (int i = 0; i < 10; i++) { System.out.println("Value of i = " + i); } } }
【简答题】选择正确译文。 1. 你好吗? [ ] A. How are you? B. Are you good? C. You are how? 2. 早上好! [ ] A. Good afternoon! B. Morning good! C. Good morning! 3. 你叫什么名字? [ ] A. What name is your? B. What's your na...