2017年11月18日
《その139》 乱数の生成 & p.97演習3-1
乱数の生成
ヘッダ<cstdlib>, srand関数, rand関数、自分は何でもすぐ忘れてしまうので、後々のために乱数生成の定番手法を書いておこうと思います。
------------------------------------------
#include <ctime>
#include <cstdlib>
#include <iostream>
using namespace std;
int main() {
int a[10];
// 乱数を生成するためのタネとして現在時刻を与える。
srand(time(NULL));
for (int i = 0; i < 10; i++) {
// 100 〜 200 の乱数
a[i] = rand() % 101 + 100;
cout << a[i] << " ";
}
cout << '\n';
}
------------------------------------------
新版明解C++中級編 p.97 演習3-1
以下のプログラムは、成績が『良』の識別表示と『優または可』の識別表示を行うプログラムである。
これら以外の条件でも識別表示するように変更したプログラムを作成せよ。
------------------------------------------
#include <ctime>------------------------------------------
#include <cstdlib>
#include <iostream>
using namespace std;
// 良[B:70〜79] であるか
bool isB(int x) {
return x >= 70 && x <= 79;
}
// 優[A:80〜100] or 可[C:60〜69] であるか
bool isAorC(int x) {
return (x >= 80 && x <= 100) || (x >= 60 && x <= 69);
}
// fit(x)の返却値が真 true であれば ★印を付けて表示
void put_list(const int a[], int n, bool fit(int)) {
for (int i = 0; i < n; i++) {
if (fit(a[i]))
cout << "★";
else
cout << " ";
cout << "a[" << i << "] = " << a[i] << '\n';
}
}
int main() {
int a[10]; // 点数を格納
int n = sizeof(a) / sizeof(a[0]);
srand(time(NULL));
for (int i = 0; i < n; i++)
a[i] = rand() % 101; // 0〜100の乱数
cout << "良----------\n";
put_list(a, n, isB); // 良 に★を付けて表示
cout << "\n優または可--\n";
put_list(a, n, isAorC); // 優 or可 に★を付けて表示
}
// p97_演習3-1
#include <ctime>
#include <cstdlib>
#include <iostream>
using namespace std;
// 優[A:80〜100] であるか
bool isA(int x) {
return x >= 80;
}
// 良[B:70〜79] であるか
bool isB(int x) {
return x >= 70 && x <= 79;
}
// 可[C:60〜69] であるか
bool isC(int x) {
return x >= 60 && x <= 69;
}
// 不可[D:0〜59] であるか
bool isD(int x) {
return x <= 59;
}
// 優[A:80〜100] or 可[C:60〜69] であるか
bool isAorC(int x) {
return (x >= 80 && x <= 100) || (x >= 60 && x <= 69);
}
// fit(x)の返却値が真 true であれば ★印を付けて表示
void put_list(const int a[], int n, bool fit(int)) {
for (int i = 0; i < n; i++) {
if (fit(a[i]))
cout << "★";
else
cout << " ";
cout << "a[" << i << "] = " << a[i] << '\n';
}
}
int main() {
int a[10];
int n = sizeof(a) / sizeof(a[0]);
srand(time(NULL));
for (int i = 0; i < n; i++) {
a[i] = rand() % 81 + 20;
if (a[i] <= 59) // 不可の人は再試験 (^ ^;)
a[i] = rand() % 81 + 20;
}
cout << "優----------\n";
put_list(a, n, isA);
cout << "\n良----------\n";
put_list(a, n, isB);
cout << "\n可----------\n";
put_list(a, n, isC);
cout << "\n不可--------\n";
put_list(a, n, isD);
cout << "\n優または可--\n";
put_list(a, n, isAorC);
}
この記事へのコメント
コメントを書く
この記事へのトラックバックURL
https://fanblogs.jp/tb/6984132
※ブログオーナーが承認したトラックバックのみ表示されます。
この記事へのトラックバック