ランキング参加中プログラミング [TOP] 次>> Visual Studioで新規プロジェクトを作り、次のcppファイルを作成して下さい。 【KansuuTest1.cpp】 #include <iostream> #include <stdlib.h> int main() { int seed, random; seed = 2; srand(seed); for (; ;) { random = rand(); std::cout << "random の値は " << random << std::endl; if(rand</stdlib.h></iostream>…