6文本修改
This commit is contained in:
parent
ba3d6259d1
commit
50f2a1273e
1 changed files with 3 additions and 3 deletions
|
@ -1,8 +1,9 @@
|
||||||
#include "vec.cpp"
|
#include "vec.cpp"
|
||||||
#include "list.cpp"
|
#include "list.cpp"
|
||||||
|
#include "score.h"
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include "score.h"
|
|
||||||
|
|
||||||
std::string PU[54] = {
|
std::string PU[54] = {
|
||||||
"3D", "3C", "3B", "3A",
|
"3D", "3C", "3B", "3A",
|
||||||
|
@ -27,7 +28,6 @@ int main()
|
||||||
printf("生成随机扑克序列\n");
|
printf("生成随机扑克序列\n");
|
||||||
srand(time(NULL));
|
srand(time(NULL));
|
||||||
Vec v(54, 2);
|
Vec v(54, 2);
|
||||||
// v.printall();
|
|
||||||
|
|
||||||
List l;
|
List l;
|
||||||
|
|
||||||
|
@ -94,7 +94,7 @@ Begin:
|
||||||
int pass_num = 0;
|
int pass_num = 0;
|
||||||
int round = 1;
|
int round = 1;
|
||||||
int finish_num = 0;
|
int finish_num = 0;
|
||||||
printf("发牌完成,选择你的操作:\n");
|
printf("理牌完成,选择你的操作:\n");
|
||||||
while (finish_num < 2 && round < 54)
|
while (finish_num < 2 && round < 54)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
Reference in a new issue