標題:
任抽一張撲克牌
[打印本頁]
作者:
tonyh
時間:
2014-1-11 15:02
標題:
任抽一張撲克牌
本帖最後由 tonyh 於 2014-1-17 18:54 編輯
設計一小程式, 可以隨機地顯示整組52張撲克牌中的任一張牌號.
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a, b;
srand(time(NULL));
re:
a=rand()%4+3;
b=rand()%13+1;
cout<<"您所抽到的牌是: ";
cout<<char(a);
if(b==1)
cout<<"A"<<endl;
else if(b==11)
cout<<"J"<<endl;
else if(b==12)
cout<<"Q"<<endl;
else if(b==13)
cout<<"K"<<endl;
else
cout<<b<<endl;
system("pause");
goto re;
system("pause");
return 0;
}
複製代碼
作者:
張瀚仁
時間:
2014-1-11 15:17
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b;
srand(time(NULL));
re:
a=rand()%4+3;
b=rand()%13+1;
cout<<"你抽到的牌是:";
cout<<char(a);
if(b==1)
cout<<"A"<<endl;
else if(b==11)
cout<<"J"<<endl;
else if(b==12)
cout<<"Q"<<endl;
else if(b==13)
cout<<"K"<<endl;
else
cout<<b<<endl;
system("pause");
goto re;
system("pause");
return 0;
}
複製代碼
作者:
許逸群
時間:
2014-1-11 15:17
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b;
srand(time(NULL));
re:
a=rand()%4+3;
b=rand()%13+1;
cout<<"你抽到的牌是:";
cout<<char(a);
if(b==1)
cout<<"A"<<endl;
else if(b==11)
cout<<"J"<<endl;
else if(b==12)
cout<<"Q"<<endl;
else if(b==13)
cout<<"K"<<endl;
else
cout<<b<<endl;
system("pause");
goto re;
system("pause");
return 0;
}
複製代碼
作者:
林以諾
時間:
2014-1-11 15:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b;
srand(time(NULL));
re:
a=rand()%4+3;
b=rand()%13+1;
if(a==1)
cout<<char(a)<<"A"<<endl;
if(a>1 && a<11)
cout<<char(a)<<b<<endl;
if(a==11)
cout<<char(a)<<"J"<<endl;
if(a==12)
cout<<char(a)<<"Q"<<endl;
if(a==13)
cout<<char(a)<<"K"<<endl;
system("pause");
goto re;
system("pause");
return 0;
}
複製代碼
作者:
鎧言
時間:
2014-1-11 15:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b;
srand(time(NULL));
re:
a=rand()%4+3;
b=rand()%13+1;
if(a==1)
cout<<char(a)<<"A"<<endl;
if(a>1 && a<11)
cout<<char(a)<<b<<endl;
if(a==11)
cout<<char(a)<<"J"<<endl;
if(a==12)
cout<<char(a)<<"Q"<<endl;
if(a==13)
cout<<char(a)<<"K"<<endl;
system("pause");
goto re;
system("pause");
return 0;
}
複製代碼
作者:
劉泳鱔
時間:
2014-1-11 15:23
本帖最後由 劉泳鱔 於 2014-1-11 15:25 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a, b;
srand(time(NULL));
re:
a=rand()%4+3;
b=rand()%13+1;
cout<<"你抽的是: ";
cout<<char(a);
if(b==1)
cout<<"A"<<endl;
else if(b==11)
cout<<"J"<<endl;
else if(b==12)
cout<<"Q"<<endl;
else if(b==13)
cout<<"K"<<endl;
else
cout<<b<<endl;
system("pause");
goto re;
system("pause");
return 0;
}
複製代碼
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a, b;
srand(time(NULL));
re:
a=rand()%4+3;
b=rand()13+1
cout<<"你抽的是: ";
cout<<char(a)
if(b==1)
cout<<"A"<<endl;
else if(b==11)
cout<<"j"<<endl;
else if(b==12)
cout<<"Q"<<endl;
else if(b==13)
cout<<"K"<<endl;
else
cout<<b<<endl;
system("pause");
goto re;
system("pause");
return 0;
}
複製代碼
作者:
郭凡瑛
時間:
2014-1-11 15:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b;
srand(time(NULL));
re:
a=rand()%4+3;
b=rand()%13+1;
cout<<"你抽到的是: ";
cout<<char(a);
if(b==1)
cout<<"A"<<endl;
else if(b==11)
cout<<"J"<<endl;
else if(b==11)
cout<<"Q"<<endl;
else if(b==11)
cout<<"K"<<endl;
else
cout<<b<<endl;
system("pause");
goto re;
system("pause");
return 0;
}
複製代碼
作者:
黃崇維
時間:
2014-1-17 18:53
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a, b;
srand(time(NULL));
re:
a=rand()%4+3;
b=rand()%13+1;
cout<<"你所抽到的牌是: ";
cout<<char(a);
if(b==1)
cout<<"A"<<endl;
else if(b==11)
cout<<"J"<<endl;
else if(b==12)
cout<<"Q"<<endl;
else if(b==13)
cout<<"K"<<endl;
else
cout<<b<<endl;
system("pause");
goto re;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2