2011年10月1期WebProgpublic class Lifework {
TOP カテ一覧 スレ一覧 削除依頼 ▼
・ 次のスレ
【PHP】[フレームワーク] kohanaスレ
ASP.NETで容易にWeb作成
インストールマニアックス4 azure祭り
【GREE】ソーシャルアプリ開発スレ【モバゲー】
public class Lifework {
- 1 :10/10/08 〜 最終レス :10/10/26
- public static final int MAX_OLD = 100;
private static int money = 0;
private static int position = 0;
private static int skill = 0;
private static int luck = 23;
public static void main(String[] args) {
boolean employee = Boolean.parseBoolean(args[0]);
int currentOld = Integer.parseInt(args[1]);
for (int old = currentOld; old <= MAX_OLD; old++) {
if (employee == true) {
work(old);
life();
} else {
neet(old);
life();
}}
System.out.println("money:" + money + " position:" + position
+ " skill:" + skill);
}
private static void work(int old) {
position++;
skill++;
money += (position * skill) * old * luck;
}
private static void neet(int old) {
position = 0;
skill += 0;
money += 0;
}
private static void life() {
money++;
}}
- 2 :
- 2
- 3 :
- 3
- 4 :
- 4
- 5 :
- 5
- 6 :
- 6
- 7 :
- 7
- 8 :
- 8
- 9 :
- 9
- 10 :
- exit
- 11 :
- >>10
- 12 :
- ClassNotFoundException
- 13 :
- 13
- 14 :
- 14
- 15 :
- 15
- 16 :
- 16
- 17 :
- 17
- 18 :
- NullPointerException
- 19 :
- 19
- 20 :10/10/26
- 20
TOP カテ一覧 スレ一覧 削除依頼 ▲
・ 次のスレ
【PHP】[フレームワーク] kohanaスレ
ASP.NETで容易にWeb作成
インストールマニアックス4 azure祭り
【GREE】ソーシャルアプリ開発スレ【モバゲー】