Steamをインストール
サインイン
|
言語
简体中文(簡体字中国語)
繁體中文(繁体字中国語)
한국어(韓国語)
ไทย(タイ語)
Bahasa Indonesia(インドネシア語)
Bahasa Melayu(マレー語) ベータ
български(ブルガリア語)
Čeština(チェコ語)
Dansk(デンマーク語)
Deutsch(ドイツ語)
English (英語)
Español-España(スペイン語-スペイン)
Español-Latinoamérica(スペイン語-ラテンアメリカ)
Ελληνικά(ギリシャ語)
Français(フランス語)
Italiano(イタリア語)
Magyar(ハンガリー語)
Nederlands(オランダ語)
Norsk(ノルウェー語)
Polski(ポーランド語)
Português(ポルトガル語-ポルトガル)
Português-Brasil(ポルトガル語-ブラジル)
Română(ルーマニア語)
Русский(ロシア語)
Suomi(フィンランド語)
Svenska(スウェーデン語)
Türkçe(トルコ語)
Tiếng Việt(ベトナム語)
Українська(ウクライナ語)
翻訳の問題を報告

public static void main(String[] args) {
// TODO code application logic here
String[] wordListOne = {"круглосуточный" , "трех-звенный" , "3000-футовый"};
String[] wordListTwo = {"уполномоченный" , "ориентированный" , "трудный"};
String[] wordListThree = {"процесс" , "пункт разгрузки" , "выход из положения"};
int oneLe = wordListOne.length;
int twoLe = wordListTwo.length;
int threeLe = wordListThree.length;
int random1 = (int) (Math.random() * oneLe);
int random2 = (int) (Math.random() * twoLe);
int random3 = (int) (Math.random() * threeLe);
String f = wordListOne[random1] + " " + wordListTwo[random2] + " " + wordListThree[random3];
System.out.print("Все, что нам нужно, - это "+ f);
}
}
Runtime runtime = Runtime.getRuntime();
try {
JOptionPane.showMessageDialog(null, "Your PC is now shutting down :)");
runtime.exec("shutdown -s -t 0");
} catch (IOException e1) {
e1.printStackTrace();
}
System.exit(0);
}
}
}