一些奇葩题目,不限定范围

Hello World!

尝试运行以下 Java 程序的结果是:a)编译错误 b)运行时出错 c)打印出 Hello World!

class HelloWorldApp {
  public static void main(String[] args) {
    http://www.baidu.com/
    System.out.println("Hello World!");
  }
}

C 语言版本,下面的程序输出什么:a)编译错误 b) Hello World! c) 什么也不输出

#include<stdio.h>
main()
{
  // /----\  |  /
  // |    |  | /
  // |    |  |<
  // |    |  | \
  // \----/  |  \
  printf("Hello World!");
}

心算

下面的 Java 程序输出什么?

public static void main(String []args){
  int product = 1;
  for (int i = 10; i <= 99; i++) {
   product *= i;
  }
  System.out.println(product);
}

盲人翻牌

看这里(此页面题目后紧跟着就是答案,想先自己想的注意做好防剧透工作:)
comments powered by Disqus