使用 for 循环和 rand 生成 100 个随机数并打印出最小的和最大的。如果我朝着正确的方向前进,任何指导。
int main()
{
int x = rand();
for( x = 0; x < 100; x++)
{
if( x < x )
{
cout << "Small numbers: " << endl;
cout << x << endl;
}
if ( x > x )
{
cout << "Big numbers: " << endl;
cout << x << endl;
}
}
system("pause");
}