練習問題/解答例/ひらがな2文字をランダムで出力するプログラム/C++
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
[[問題文>練習問題#s98f80e0]]~
Linuxのg++ 4.6.3で確認。
#include <iostream>
#include <cstdlib>
#include <clocale>
#include <ctime>
using namespace std;
int main(void) {
setlocale(LC_ALL, "ja_JP.UTF-8");
srand(time(NULL));
const wchar_t s[] = L"あいうえおかきくけこさしすせそ...
int sz = sizeof(s) / sizeof(s[0]) - 1;
for(int i=0; i<100; i++) {
wcout << s[rand()%sz] << s[rand()%sz] << endl;
}
return 0;
}
終了行:
[[問題文>練習問題#s98f80e0]]~
Linuxのg++ 4.6.3で確認。
#include <iostream>
#include <cstdlib>
#include <clocale>
#include <ctime>
using namespace std;
int main(void) {
setlocale(LC_ALL, "ja_JP.UTF-8");
srand(time(NULL));
const wchar_t s[] = L"あいうえおかきくけこさしすせそ...
int sz = sizeof(s) / sizeof(s[0]) - 1;
for(int i=0; i<100; i++) {
wcout << s[rand()%sz] << s[rand()%sz] << endl;
}
return 0;
}
ページ名: