其實(shí)最近有寫過(guò)幾個(gè)比較大的程式,都幾百行那種的,只是有點(diǎn)小複雜就不放上來(lái)了,就放今天無(wú)聊寫出來(lái)的,這個(gè)是V2,還不算完成,資料只要大於30筆就會(huì)有BUG,有空我再用動(dòng)態(tài)寫一下,不過(guò)大概是不會(huì)有空了。 XDD
可以輸入幾個(gè)猶豫不決想吃的東西,然後程式三秒後會(huì)隨機(jī)輸出一個(gè),就這樣。
LOL
#include<iostream>
#include<ctime>
#include<string>
using namespace std;
int main()
{
string str;
cout << "輸入幾個(gè)你想吃的東西,輸入完畢請(qǐng)輸入ok。"<<endl;
cin >> str;
string eat[30];
int count=0;
while(true)
{
eat[count] = str;
count++;
cin >> str;
if(str=="ok" || str=="OK" || str=="Ok" || str=="oK")
break;
}
time_t a1;
time_t a2;
time(&a1);
time(&a2);
do
{
time(&a2);
}while(a2-a1<1);
cout <<"."<<endl;
do
{
time(&a2);
}while(a2-a1<2);
cout <<"."<<endl;
do
{
time(&a2);
}while(a2-a1<3);
cout <<"."<<endl;
srand(time(0));
cout << eat[rand()%count]<<endl;
delete []eat;
system("pause");
return 0;
}
可以下載去玩玩看,附上載點(diǎn)。