- #include <iostream>
- #include <cstdlib>
- #include <ctime>
- using namespace std;
- int main()
- {
- int a, b;
- srand(time(NULL));
- START:
- system("cls");
- for(int i = 0; i < 1; i++)
- {
- a = rand() % 4 + 3;
- }
- for(int i = 0; i < 1; i++)
- {
- b = rand() % 12 + 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 START;
- return 0;
- }
複製代碼 |