アットウィキロゴ
class Q3 {
   public static void main(String[] args) {
int res;
if(args.length == 1) {
    int x = Integer.parseInt(args[0]);
    if(0 <= x) {
	res = x;
    } else {
	res = x * (-1);
    }
    System.out.println(res + "でどうだろう。");
} else {
    System.out.println("値は一個だってばよ。");
}
   }
}

タグ:

+ タグ編集
  • タグ:
最終更新:2009年05月02日 12:39