標題:
[作業] 撲克牌整組顯示
[打印本頁]
作者:
tonyh
時間:
2012-5-5 17:17
標題:
[作業] 撲克牌整組顯示
本帖最後由 tonyh 於 2012-5-12 16:20 編輯
利用ASCII碼轉換成字元, 搭配巢狀迴圈, 在螢幕上顯示出整組撲克牌如下:
[attach]592[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=3; i<=6; i++)
{
cout<<char(i)<<"A ";
for(int j=2; j<=10; j++)
{
cout<<char(i)<<j<<" ";
}
cout<<char(i)<<"J "<<char(i)<<"Q "<<char(i)<<"K ";
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
劉漢文
時間:
2012-5-12 16:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=3; i<=6; i++)
{
cout<<char(i)<<"A ";
for(int j=2; j<=10; j++)
{
cout<<char(i)<<j<<" ";
}
cout<<char(i)<<"j "<<char(i)<<"Q "<<char(i)<<"K ";
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
t3742238
時間:
2012-5-12 16:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=3; i<=6; i++)
{
cout<<char(i)<<"A ";
for(int j=2 ;j<=10 ;j++)
{
cout<<char(i)<<j<<" ";
}
cout<<char(i)<<"J "<<char(i)<<"Q "<<char(i)<<"K ";
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡昀佑
時間:
2012-5-12 16:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=3; i<=6;i++)
{
cout<<char(i)<<"A ";
for(int j=2; j<=10;j++)
{
cout<<char(i)<<j<<" ";
}
cout<<char(i)<<"J "<<char(i)<<"Q "<<char(i)<<"K ";
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡昀佑
時間:
2012-5-12 17:05
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b;
srand(time(NULL));
a=rand()%13+1;
b=rand()%13+1;
cout<<"你手抽的牌為:";
if(b=1)
{
cout<<char(a)<<"A"<<endl;
}
if(b>=2 && b<=10)
{
cout<<char(a)<<b<<endl;
}
if(b==11)
{
cout<<char(a)<<"J"<<endl;
}
if(b==12)
{
cout<<char(a)<<"Q"<<endl;
}
if(b==13)
{
cout<<char(a)<<"K"<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2