標題:
[作業] 搭配while迴圈產生20組1~4之隨機亂數
[打印本頁]
作者:
tonyh
時間:
2013-10-5 15:29
標題:
[作業] 搭配while迴圈產生20組1~4之隨機亂數
本帖最後由 tonyh 於 2013-10-12 13:59 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
_______________
_______________
while(a!=20)
{
cout<<____________<<endl;
a++;
}
system("pause");
return 0;
}
複製代碼
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(time(NULL));
int i=0;
while(i!=20)
{
cout<<rand()%4+1<<endl;
i++;
}
system("pause");
return 0;
}
複製代碼
作者:
張瀚仁
時間:
2013-10-5 15:42
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(time(NULL))
int a=0;
while(a!=20)
{
cout<<rand%4+1<<endl;
a++;
}
system("pause");
return 0;
}
複製代碼
作者:
黃崇維
時間:
2013-10-5 16:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(time(NULL));
int a=0;
while(a!=20)
{
cout<<rand%4+1<<endl;
a++;
}
system("pause");
return 0;
}
複製代碼
作者:
鎧言
時間:
2013-10-5 16:02
本帖最後由 鎧言 於 2013-10-5 16:10 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(time(NULL))
int a=0;
while(a!=20)
{
cout<<rand%4+1<<endl;
a++;
}
system("pause");
return 0;
}
複製代碼
作者:
林以諾
時間:
2013-10-6 15:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(time(NULL));
int a=0;
while(a!=20)
{
cout<<rand()%4+1<<endl;
a++;
}
system("pause");
return 0;
}
複製代碼
作者:
劉泳鱔
時間:
2013-10-6 21:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(time(NULL));
int a=0;
while(a!=20)
{
cout<<rand()%4+1<<endl;
a++;
}
system("pause");
return 0;
}
複製代碼
作者:
許逸群
時間:
2013-10-12 11:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(time(NULL));
int a=0;
while(a!=20)
{
cout<<rand()%+1<<endl;
a++;
}
system("pause");
return 0;
}
複製代碼
作者:
黃柏維
時間:
2013-10-12 14:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(time(NULL));
int a=0;
while(a!=20)
{
cout<<rand()%4+1<<endl;
a++;
}
system("pause");
return 0;
}
複製代碼
作者:
劉得旗
時間:
2013-10-12 14:05
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(time(NULL));
int i=0;
while(i!=20)
{
cout<<rand()%4+1<<endl;
i++;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2