標題:
任抽一張撲克牌
[打印本頁]
作者:
陳品肇
時間:
2019-7-6 12:51
標題:
任抽一張撲克牌
本帖最後由 陳品肇 於 2019-7-6 12:54 編輯
設計一小程式, 可以隨機地顯示整組52張撲克牌中的任一張牌號.
[attach]6829[/attach]
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
re:
system("cls");
int a=rand()%4+3;
int b=rand()%13+1;
cout<<"您抽到的牌是: "<<char(a);
if(b==1)
cout<<"A";
else if(b==11)
cout<<"J";
else if(b==12)
cout<<"Q";
else if(b==13)
cout<<"K";
else
cout<<b;
cout<<endl;
system("pause");
goto re;
return 0;
}
複製代碼
作者:
曲書辰
時間:
2019-7-6 13:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(time(NULL));
int n=rand()%4+3;
int r=rand()%14+1;
cout<<char(n);
if(r==1)
{
cout<<"A"<<endl;
}
else if(r==11)
{
cout<<"A"<<endl;
}
else if(r==12)
{
cout<<"A"<<endl;
}
else if(r==13)
{
cout<<"A"<<endl;
}
else
{
cout<<r<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
吳孟書
時間:
2019-7-6 13:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(time(NULL));
int p=rand()%4+3;
int n=rand()%13+1;
cout<<"您抽到的牌是:"<<char(p);
if(n==1)
{
cout<<"A";
}
else if(n==11)
{
cout<<"J";
}
else if(n==12)
{
cout<<"Q";
}
else if(n==13)
{
cout<<"K";
}
else
{
cout<<n;
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪寬瀧
時間:
2019-7-6 13:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(time(NULL));
re:
int s=rand()%4+3;
int z=rand()%13+1;
cout<<"您所抽到der牌是"<<char(s);
if(z==1)
{
cout<<"A";
}else if(z==11)
{
cout<<"J";
}else if(z==12)
{
cout<<"Q";
}else if(z==13)
{
cout<<"K";
}else
{
cout<<z;
}
system("pause");
system("cls");
goto re;
return 0;
}
複製代碼
作者:
湯郡一
時間:
2019-7-6 13:46
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
re:
system("cls");
int a=rand()%4+3;
int b=rand()%13+1;
cout<<"您所抽到的牌是:"<<char(a);
if(b==11)
{
cout<<"J";
}else if(b==12)
{
cout<<"Q";
}else if(b==13)
{
cout<<"K";
}else
{
cout<<b;
}
cout<<endl;
system("pause");
goto re;
return 0;
}
複製代碼
作者:
吳孟修
時間:
2019-7-6 13:47
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
re:
system("cls");
int a=rand()%4+3;
int b=rand()%13+1;
cout<<"您抽到的牌是:"<<char(a);
if(b==1)
{
cout<<"A";
}
else if(b==11)
{
cout<<"J";
}
else if(b==12)
{
cout<<"Q";
}
else if(b==13)
{
cout<<"K";
}
else
{
cout<<b;
}
cout<<endl;
system("pause");
goto re;
return 0;
}
複製代碼
作者:
王瑞喻
時間:
2019-7-6 14:09
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
re:
int r=rand()%4+3;
int n=rand()%13+1;
cout<<char(r);
if(n==1)
{
cout<<"A";
}else if(n==11)
{
cout<<"J";
}else if(n==12)
{
cout<<"Q";
}else if(n==13)
{
cout<<"K";
}else
{
cout<<n;
}
cout<<endl;
system("pause");
goto re;
return 0;
}
複製代碼
作者:
田宇任
時間:
2019-7-20 13:20
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
re:
int number=rand()%4+3;
int apple=rand()%13+1;
cout<<"你抽到的牌是:"<<char(number);
if(apple==1)
cout<<"A";
else if(apple==11)
cout<<"J";
else if(apple==12)
cout<<"Q";
else if(apple==13)
cout<<"K";
else
cout<<apple;
system("pause");
system("cls");
goto re;
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2