[1] 授業単元: Introduction to C++ [2] 問題文: ユーザーにサイズN(最大で100000)を入力させ、そのサイズのArrayを1〜100までのランダムな数字で埋めた後、N個のランダムな数字を数字1、数字2、数字3・・・という具合にカウントするプログラムを書きなさい (元の文が英文なのですが、約した際に何かしら抜け落ちている点が在るかもしれないので一応原文も記載しておきます) Write a program that asks user to enter a size, N. (The maximum is 100000). Write a function that generates random numbers in range of 1 ~ 100 and fill an array of size N. You also need to count how many 1’s, 2’s, 3’s, 4’s, 5’s, …, 100’s. If the random number function does it job perfectly, the distribution to each number should be equal. But they might be slightly off. 3] 環境 [3.1] OS:Vista [3.2] コンパイラ名とバージョン:Visual C++ 2008 [3.3] 言語:C++ [4] 期限: 2010/04/30 [5] その他の制限: なし