diff --git a/01.cpp b/01.cpp deleted file mode 100644 index 80a3bd5..0000000 --- a/01.cpp +++ /dev/null @@ -1,168 +0,0 @@ -#include -#include -#include -using namespace std; -typedef struct memoryBlock{ - string jobName; - int startadress; - int length; - bool state; -}memoryBlock; -vector mb; -void init(){ - memoryBlock m1,m2,m3,m4,m5,m6; - m1.jobName="作业1";m2.jobName="作业2";m3.jobName="未分配";m4.jobName="作业3";m5.jobName="未分配";m6.jobName="未分配"; - m1.state=1;m2.state=1;m3.state=0;m4.state=1;m5.state=0;m6.state=0; - m1.startadress=60;m2.startadress=32;m3.startadress=60;m4.startadress=8;m5.startadress=32;m6.startadress=8; - m1.length=4;m2.length=16;m3.length=4;m4.length=20;m5.length=16;m6.length=20; - mb.push_back(m1);mb.push_back(m2);mb.push_back(m3);mb.push_back(m4);mb.push_back(m5);mb.push_back(m6); -} -void firstfit(){ - string name; - cout<<"请输入要分配的作业名称:"; - cin>>name; - int size; - cout<<"请输入作业主存量:"; - cin>>size; - for(vector::iterator it = mb.begin();it!=mb.end();++it){ - int s_pos = it->startadress+size; - int last_size = it->length-size; - int f = 0; - if(it->length>size){ - f=1; - } - if(it->state==0&&it->length>=size){ - it->state=1; - it->length=size; - it->jobName = name; - if(f){ - memoryBlock m; - m.jobName="未分配"; - m.length=last_size; - m.state=0; - m.startadress = s_pos; - it++; - mb.insert(it,m); - } - break; - } - } -} -void bestfit(){ - string name; - cout<<"请输入要分配的作业名称:"; - cin>>name; - int size; - cout<<"请输入作业主存量:"; - cin>>size; - int min_last=128; - for(vector::iterator it = mb.begin();it!=mb.end();++it){ - if(it->state==0&&it->length>=size){ - int last_size = it->length-size; - if(last_size::iterator it = mb.begin();it!=mb.end();++it){ - int s_pos = it->startadress+size; - int last_size = it->length-size; - if(last_size==min_last){ - it->state=1; - it->length=size; - it->jobName = name; - if(last_size>0){ - memoryBlock m; - m.jobName="未分配"; - m.length=last_size; - m.state=0; - m.startadress = s_pos; - it++; - mb.insert(it,m); - } - break; - } - } -} -void recycle(){ - cout<<"请输入要回收的作业名称:"; - string name; - cin>>name; - vector::iterator it_new; - for(vector::iterator it = mb.begin();it!=mb.end();++it){ - if(it->jobName.compare(name)==0){ - it->state=0; - it->jobName="未分配"; - it_new = it; - break; - } - } - vector::iterator it_pre=--it_new; - it_new++; - vector::iterator it_next=++it_new; - it_new--; - if(it_pre->state==1&&it_next->state==0){ - it_new->length+=it_next->length; - mb.erase(it_next); - } - else if(it_pre->state==0&&it_next->state==1){ - it_pre->length+=it_new->length; - mb.erase(it_new); - } - else if(it_pre->state==0&&it_next->state==0){ - it_pre->length+=it_new->length; - it_pre->length+=it_next->length; - mb.erase(it_new); - mb.erase(it_next); - } -} -void distribute(){ - cout<<"*********************空闲区表*********************"<::iterator it = mb.begin();it!=mb.end();++it){ - if(it->state==0){ - cout<<"\t"<startadress<<"k\t|\t"<length<<"k\t|\t"<jobName<::iterator it = mb.begin();it!=mb.end();++it){ - if(it->state==1){ - cout<<"\t"<startadress<<"k\t|\t"<length<<"k\t|\t"<jobName<>option1; - int option2; - int running = 1; - while(running){ - cout<<"选择功能项(1-退出,2-分配主存,3-回收主存,4-显示主存)"<>option2; - switch (option2){ - case 1: running = 1;break; - case 2: { - if(option1=='x'){ - bestfit(); - } - else if(option1=='y'){ - bestfit(); - } - break; - } - case 3: {recycle();break;} - case 4: {distribute();break;} - default:{ - cout<<"输入有误!请重新选择"< -#include -#define list_init_size 100 -#define listincrement 10 -#define ok 1 - -typedef int elemtype; -typedef int status; - -typedef struct -{ - elemtype *elem; - int length; - int listsize; -}sqlist; - - -status initlist(sqlist &l)//Ա -{ - l.elem=(elemtype * )malloc(list_init_size*sizeof(elemtype)); - l.listsize=list_init_size; - l.length=0; - return ok; -} - -status listlength(sqlist l)//õԪصĸ -{ - return l.length; -} - -int getelem(sqlist l,int i,elemtype &e)//õֵ -{ - if(i<1||i>l.length) - { - printf("Ϸ"); - return 0; - } - e=l.elem[i-1]; - return ok; -} - -status listinsert(sqlist &l,int i,elemtype e)// -{ - elemtype *p,*q; - q=&(l.elem[i-1]); - for(p=&(l.elem[l.length-1]);p>=q;--p) - *(p+1)=*p; - *q=e; - ++l.length; - return ok; -} - -void listprint(sqlist l)// -{ - int i; - for(i=0;i - -int factorial(int n) -{ - if(n==0) - return 1; - return n*factorial(n-1); -} - -int main() -{ - int n,x; - printf("ҪĽ׳˵"); - scanf("%d",&n); - x=factorial(n); - printf("%dĽ׳%d\n",n,x); - return 0; -} diff --git a/game/README.TXT b/game/README.TXT deleted file mode 100644 index 6ce527f..0000000 --- a/game/README.TXT +++ /dev/null @@ -1,12 +0,0 @@ ------------------------------------------------------------------------- -这是这个工程的README文件,你可以在这里描述你的工程。告诉读者(某些对这个 -工程一无所知的人)所有他所需要知道的东西。你的说明通常至少应该包含以下几 -个部分: ------------------------------------------------------------------------- - -工程名: -工程的目标: -版本或者日期: -如何启动这个工程: -作者 -使用指南: diff --git a/game/card.class b/game/card.class deleted file mode 100644 index f7cca9f..0000000 Binary files a/game/card.class and /dev/null differ diff --git a/game/card.ctxt b/game/card.ctxt deleted file mode 100644 index c13c717..0000000 --- a/game/card.ctxt +++ /dev/null @@ -1,15 +0,0 @@ -#BlueJ class context -comment0.target=card -comment0.text=\r\n\ Write\ a\ description\ of\ class\ card\ here.\r\n\ \r\n\ @author\ (your\ name)\ \r\n\ @version\ (a\ version\ number\ or\ a\ date)\r\n -comment1.params= -comment1.target=void\ act() -comment1.text=\r\n\ Act\ -\ do\ whatever\ the\ card\ wants\ to\ do.\ This\ method\ is\ called\ whenever\r\n\ the\ 'Act'\ or\ 'Run'\ button\ gets\ pressed\ in\ the\ environment.\r\n -comment2.params= -comment2.target=int\ getValue() -comment3.params= -comment3.target=boolean\ getFaceup() -comment4.params= -comment4.target=void\ turnFaceDown() -comment5.params=cardValue -comment5.target=card(int) -numComments=6 diff --git a/game/card.java b/game/card.java deleted file mode 100644 index 7a6063d..0000000 --- a/game/card.java +++ /dev/null @@ -1,59 +0,0 @@ -import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) -import java.util.*; -/** - * Write a description of class card here. - * - * @author (your name) - * @version (a version number or a date) - */ -public class card extends Actor -{ - /** - * Act - do whatever the card wants to do. This method is called whenever - * the 'Act' or 'Run' button gets pressed in the environment. - */ - public void act() - { - // Add your action code here. - if(Greenfoot.mouseClicked(this)){ - if(!isFaceUp){ - setImage(faceUpImage); - isFaceUp = true; - } - } - - } - // 获取这张牌的点数 - public int getValue(){ - return value; - } - - // 获取这张牌是否已翻面 - public boolean getFaceup(){ - return isFaceUp; - } - - // 将牌翻成背面朝上 - public void turnFaceDown(){ - isFaceUp=false; - setImage(faceDownImage); - - } - - private int value = -1; //初始点数为-1,表示还没有生成确定的扑克牌。一旦生成了一张牌,其点数就不为-1 - private boolean isFaceUp = false; //isFaceUp=true,则牌正面朝上,否则背面朝上 - private GreenfootImage faceUpImage = null;//faceUpImage表示牌的正面图案文件 - private GreenfootImage faceDownImage = null;//faceDownImage表示牌的背面面图案文件 - - //Card类的构造方法 - public card(int cardValue) {//cardValue是构造一张Card对象时传入的牌的点数 - value = cardValue; - isFaceUp = false; //所有被构造的牌都是背面朝上的 - String fileName = "hearts" + value + ".png"; //根据牌点数匹配的正面图案文件名 - //生成牌的正面图像对象 - faceUpImage = new GreenfootImage(fileName.toLowerCase()); - faceDownImage = new GreenfootImage("blueflip.png"); - //生成牌的背面图案对象 - setImage(faceDownImage);//让牌背面朝上放在牌桌上 - } -} diff --git a/game/images/blueflip.png b/game/images/blueflip.png deleted file mode 100644 index c116591..0000000 Binary files a/game/images/blueflip.png and /dev/null differ diff --git a/game/images/bluejoker.png b/game/images/bluejoker.png deleted file mode 100644 index 7b5fc69..0000000 Binary files a/game/images/bluejoker.png and /dev/null differ diff --git a/game/images/clubs1.png b/game/images/clubs1.png deleted file mode 100644 index 3ff8aa6..0000000 Binary files a/game/images/clubs1.png and /dev/null differ diff --git a/game/images/clubs10.png b/game/images/clubs10.png deleted file mode 100644 index 888cdd6..0000000 Binary files a/game/images/clubs10.png and /dev/null differ diff --git a/game/images/clubs11.png b/game/images/clubs11.png deleted file mode 100644 index 70c085b..0000000 Binary files a/game/images/clubs11.png and /dev/null differ diff --git a/game/images/clubs12.png b/game/images/clubs12.png deleted file mode 100644 index fd9d3b5..0000000 Binary files a/game/images/clubs12.png and /dev/null differ diff --git a/game/images/clubs13.png b/game/images/clubs13.png deleted file mode 100644 index cf1f723..0000000 Binary files a/game/images/clubs13.png and /dev/null differ diff --git a/game/images/clubs2.png b/game/images/clubs2.png deleted file mode 100644 index c46843a..0000000 Binary files a/game/images/clubs2.png and /dev/null differ diff --git a/game/images/clubs3.png b/game/images/clubs3.png deleted file mode 100644 index d9435b4..0000000 Binary files a/game/images/clubs3.png and /dev/null differ diff --git a/game/images/clubs4.png b/game/images/clubs4.png deleted file mode 100644 index cc72540..0000000 Binary files a/game/images/clubs4.png and /dev/null differ diff --git a/game/images/clubs5.png b/game/images/clubs5.png deleted file mode 100644 index 451ac6a..0000000 Binary files a/game/images/clubs5.png and /dev/null differ diff --git a/game/images/clubs6.png b/game/images/clubs6.png deleted file mode 100644 index 9293ed3..0000000 Binary files a/game/images/clubs6.png and /dev/null differ diff --git a/game/images/clubs7.png b/game/images/clubs7.png deleted file mode 100644 index aca12f2..0000000 Binary files a/game/images/clubs7.png and /dev/null differ diff --git a/game/images/clubs8.png b/game/images/clubs8.png deleted file mode 100644 index 539f327..0000000 Binary files a/game/images/clubs8.png and /dev/null differ diff --git a/game/images/clubs9.png b/game/images/clubs9.png deleted file mode 100644 index 2228cec..0000000 Binary files a/game/images/clubs9.png and /dev/null differ diff --git a/game/images/diamonds1.png b/game/images/diamonds1.png deleted file mode 100644 index d98a7c4..0000000 Binary files a/game/images/diamonds1.png and /dev/null differ diff --git a/game/images/diamonds10.png b/game/images/diamonds10.png deleted file mode 100644 index 2dcf08e..0000000 Binary files a/game/images/diamonds10.png and /dev/null differ diff --git a/game/images/diamonds11.png b/game/images/diamonds11.png deleted file mode 100644 index 2b98730..0000000 Binary files a/game/images/diamonds11.png and /dev/null differ diff --git a/game/images/diamonds12.png b/game/images/diamonds12.png deleted file mode 100644 index 465d962..0000000 Binary files a/game/images/diamonds12.png and /dev/null differ diff --git a/game/images/diamonds13.png b/game/images/diamonds13.png deleted file mode 100644 index 17ba2c2..0000000 Binary files a/game/images/diamonds13.png and /dev/null differ diff --git a/game/images/diamonds2.png b/game/images/diamonds2.png deleted file mode 100644 index 8278642..0000000 Binary files a/game/images/diamonds2.png and /dev/null differ diff --git a/game/images/diamonds3.png b/game/images/diamonds3.png deleted file mode 100644 index 5132549..0000000 Binary files a/game/images/diamonds3.png and /dev/null differ diff --git a/game/images/diamonds4.png b/game/images/diamonds4.png deleted file mode 100644 index dd2418b..0000000 Binary files a/game/images/diamonds4.png and /dev/null differ diff --git a/game/images/diamonds5.png b/game/images/diamonds5.png deleted file mode 100644 index 4bf1de9..0000000 Binary files a/game/images/diamonds5.png and /dev/null differ diff --git a/game/images/diamonds6.png b/game/images/diamonds6.png deleted file mode 100644 index b21a3ee..0000000 Binary files a/game/images/diamonds6.png and /dev/null differ diff --git a/game/images/diamonds7.png b/game/images/diamonds7.png deleted file mode 100644 index 8d97797..0000000 Binary files a/game/images/diamonds7.png and /dev/null differ diff --git a/game/images/diamonds8.png b/game/images/diamonds8.png deleted file mode 100644 index 48dbe15..0000000 Binary files a/game/images/diamonds8.png and /dev/null differ diff --git a/game/images/diamonds9.png b/game/images/diamonds9.png deleted file mode 100644 index d5833b2..0000000 Binary files a/game/images/diamonds9.png and /dev/null differ diff --git a/game/images/hearts1.png b/game/images/hearts1.png deleted file mode 100644 index 534cf09..0000000 Binary files a/game/images/hearts1.png and /dev/null differ diff --git a/game/images/hearts10.png b/game/images/hearts10.png deleted file mode 100644 index 30f93d2..0000000 Binary files a/game/images/hearts10.png and /dev/null differ diff --git a/game/images/hearts11.png b/game/images/hearts11.png deleted file mode 100644 index 99d1ef3..0000000 Binary files a/game/images/hearts11.png and /dev/null differ diff --git a/game/images/hearts12.png b/game/images/hearts12.png deleted file mode 100644 index f0f7d79..0000000 Binary files a/game/images/hearts12.png and /dev/null differ diff --git a/game/images/hearts13.png b/game/images/hearts13.png deleted file mode 100644 index 7274ece..0000000 Binary files a/game/images/hearts13.png and /dev/null differ diff --git a/game/images/hearts2.png b/game/images/hearts2.png deleted file mode 100644 index ed95e56..0000000 Binary files a/game/images/hearts2.png and /dev/null differ diff --git a/game/images/hearts3.png b/game/images/hearts3.png deleted file mode 100644 index 72a3bda..0000000 Binary files a/game/images/hearts3.png and /dev/null differ diff --git a/game/images/hearts4.png b/game/images/hearts4.png deleted file mode 100644 index 30d06de..0000000 Binary files a/game/images/hearts4.png and /dev/null differ diff --git a/game/images/hearts5.png b/game/images/hearts5.png deleted file mode 100644 index a8a4236..0000000 Binary files a/game/images/hearts5.png and /dev/null differ diff --git a/game/images/hearts6.png b/game/images/hearts6.png deleted file mode 100644 index 5a26cbb..0000000 Binary files a/game/images/hearts6.png and /dev/null differ diff --git a/game/images/hearts7.png b/game/images/hearts7.png deleted file mode 100644 index 1a99572..0000000 Binary files a/game/images/hearts7.png and /dev/null differ diff --git a/game/images/hearts8.png b/game/images/hearts8.png deleted file mode 100644 index 6e274b2..0000000 Binary files a/game/images/hearts8.png and /dev/null differ diff --git a/game/images/hearts9.png b/game/images/hearts9.png deleted file mode 100644 index f649c8d..0000000 Binary files a/game/images/hearts9.png and /dev/null differ diff --git a/game/images/porkboard.jpg b/game/images/porkboard.jpg deleted file mode 100644 index 3cc8e39..0000000 Binary files a/game/images/porkboard.jpg and /dev/null differ diff --git a/game/images/redflip.png b/game/images/redflip.png deleted file mode 100644 index f4ef2b9..0000000 Binary files a/game/images/redflip.png and /dev/null differ diff --git a/game/images/redjoker.png b/game/images/redjoker.png deleted file mode 100644 index 51d4631..0000000 Binary files a/game/images/redjoker.png and /dev/null differ diff --git a/game/images/spades1.png b/game/images/spades1.png deleted file mode 100644 index 536a3be..0000000 Binary files a/game/images/spades1.png and /dev/null differ diff --git a/game/images/spades10.png b/game/images/spades10.png deleted file mode 100644 index 66ea2f1..0000000 Binary files a/game/images/spades10.png and /dev/null differ diff --git a/game/images/spades11.png b/game/images/spades11.png deleted file mode 100644 index ca08035..0000000 Binary files a/game/images/spades11.png and /dev/null differ diff --git a/game/images/spades12.png b/game/images/spades12.png deleted file mode 100644 index f8d5deb..0000000 Binary files a/game/images/spades12.png and /dev/null differ diff --git a/game/images/spades13.png b/game/images/spades13.png deleted file mode 100644 index 3072ea3..0000000 Binary files a/game/images/spades13.png and /dev/null differ diff --git a/game/images/spades2.png b/game/images/spades2.png deleted file mode 100644 index ae7ba22..0000000 Binary files a/game/images/spades2.png and /dev/null differ diff --git a/game/images/spades3.png b/game/images/spades3.png deleted file mode 100644 index c8d38f0..0000000 Binary files a/game/images/spades3.png and /dev/null differ diff --git a/game/images/spades4.png b/game/images/spades4.png deleted file mode 100644 index 2c93a21..0000000 Binary files a/game/images/spades4.png and /dev/null differ diff --git a/game/images/spades5.png b/game/images/spades5.png deleted file mode 100644 index 5cf3bcf..0000000 Binary files a/game/images/spades5.png and /dev/null differ diff --git a/game/images/spades6.png b/game/images/spades6.png deleted file mode 100644 index edc65b5..0000000 Binary files a/game/images/spades6.png and /dev/null differ diff --git a/game/images/spades7.png b/game/images/spades7.png deleted file mode 100644 index ee77ee9..0000000 Binary files a/game/images/spades7.png and /dev/null differ diff --git a/game/images/spades8.png b/game/images/spades8.png deleted file mode 100644 index b7446cb..0000000 Binary files a/game/images/spades8.png and /dev/null differ diff --git a/game/images/spades9.png b/game/images/spades9.png deleted file mode 100644 index 273a1fe..0000000 Binary files a/game/images/spades9.png and /dev/null differ diff --git a/game/project.greenfoot b/game/project.greenfoot deleted file mode 100644 index daaf137..0000000 --- a/game/project.greenfoot +++ /dev/null @@ -1,46 +0,0 @@ -#Greenfoot project file -class.card.image=blueflip.png -class.table.image=porkboard.jpg -dependency1.from=table -dependency1.to=card -dependency1.type=UsesDependency -editor.fx.0.height=0 -editor.fx.0.width=0 -editor.fx.0.x=0 -editor.fx.0.y=0 -height=584 -package.numDependencies=1 -package.numTargets=2 -project.charset=UTF-8 -publish.hasSource=false -publish.locked=true -publish.longDesc= -publish.shortDesc= -publish.tags= -publish.title= -publish.url= -readme.height=60 -readme.name=@README -readme.width=49 -readme.x=10 -readme.y=10 -simulation.speed=50 -target1.height=70 -target1.name=card -target1.showInterface=false -target1.type=ClassTarget -target1.width=120 -target1.x=0 -target1.y=0 -target2.height=70 -target2.name=table -target2.showInterface=false -target2.type=ClassTarget -target2.width=120 -target2.x=0 -target2.y=0 -version=3.0.0 -width=828 -world.lastInstantiated=table -xPosition=271 -yPosition=119 diff --git a/game/table.class b/game/table.class deleted file mode 100644 index 25a40e0..0000000 Binary files a/game/table.class and /dev/null differ diff --git a/game/table.ctxt b/game/table.ctxt deleted file mode 100644 index 505a71a..0000000 --- a/game/table.ctxt +++ /dev/null @@ -1,9 +0,0 @@ -#BlueJ class context -comment0.target=table -comment0.text=\r\n\ Write\ a\ description\ of\ class\ table\ here.\r\n\ \r\n\ @author\ (your\ name)\ \r\n\ @version\ (a\ version\ number\ or\ a\ date)\r\n -comment1.params= -comment1.target=table() -comment1.text=\r\n\ Constructor\ for\ objects\ of\ class\ table.\r\n\ \r\n -comment2.params= -comment2.target=void\ act() -numComments=3 diff --git a/game/table.java b/game/table.java deleted file mode 100644 index 76b4b82..0000000 --- a/game/table.java +++ /dev/null @@ -1,68 +0,0 @@ -import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) -import java.util.*; -/** - * Write a description of class table here. - * - * @author (your name) - * @version (a version number or a date) - */ -public class table extends World -{ - ArrayList cards=new ArrayList(); - /** - * Constructor for objects of class table. - * - */ - public table() - { - // Create a new world with 600x400 cells with a cell size of 1x1 pixels. - super(600, 400, 1); - for (int i=1; i<=5; i++) { //向集合cards中添加两组共10张5点以下的牌 - cards.add(new card(i)); - cards.add(new card(i)); - } - Collections.shuffle(cards); //集合类Collections的混排算法,用于打乱集合cards中牌的顺序 - int x=100, y=100; //牌桌上摆放牌的起点坐标 - for (int i=0; i<5; i++) { //用for循环依次在牌桌上摆放每排5张,共两排的扑克牌 - addObject(cards.get(i) , x, y); - addObject(cards.get(i+5) , x, y + cards.get(i).getImage().getHeight() + 20); - x += cards.get(i).getImage().getWidth()+20; - } - - } - public void act(){ - card card1 = null, card2 = null; - int count = 0; - int card1Value = 0, card2Value = 0; - for(int i = 0; i < cards.size(); i++){ - if(cards.get(i).getFaceup() == true){ - count++; - if(count == 1){ - card1 = cards.get(i); - card1Value = card1.getValue(); - } - if(count == 2){ - card2 = cards.get(i); - card2Value = card2.getValue(); - - if(card1Value == card2Value) - { - Greenfoot.delay(30); - - removeObject(card1); - removeObject(card2); - cards.remove(card1); - cards.remove(card2); - } - else{ - Greenfoot.delay(30); - card1.turnFaceDown(); - card2.turnFaceDown(); - } - } - } - - } - - } -} diff --git a/main.cpp b/main.cpp deleted file mode 100644 index d055824..0000000 --- a/main.cpp +++ /dev/null @@ -1,18 +0,0 @@ -#include - -int factorial(int n) { - int result = 1; - for (int i = 1; i <= n; i++) { - result *= i; - } - return result; -} - -int main() { - int n; - printf("请输入一个非负整数:"); - scanf("%d", &n); - printf("%d! = %d\n", n, factorial(n)); - return 0; -} - diff --git a/project.greenfoot b/project.greenfoot deleted file mode 100644 index 3299ddd..0000000 --- a/project.greenfoot +++ /dev/null @@ -1,46 +0,0 @@ -#Greenfoot project file -class.card.image=blueflip.png -class.table.image=porkboard.jpg -dependency1.from=table -dependency1.to=card -dependency1.type=UsesDependency -editor.fx.0.height=0 -editor.fx.0.width=0 -editor.fx.0.x=0 -editor.fx.0.y=0 -height=584 -package.numDependencies=1 -package.numTargets=2 -project.charset=UTF-8 -publish.hasSource=false -publish.locked=true -publish.longDesc= -publish.shortDesc= -publish.tags= -publish.title= -publish.url= -readme.height=60 -readme.name=@README -readme.width=49 -readme.x=10 -readme.y=10 -simulation.speed=50 -target1.height=70 -target1.name=card -target1.showInterface=false -target1.type=ClassTarget -target1.width=120 -target1.x=0 -target1.y=0 -target2.height=70 -target2.name=table -target2.showInterface=false -target2.type=ClassTarget -target2.width=120 -target2.x=0 -target2.y=0 -version=3.0.0 -width=828 -world.lastInstantiated=table -xPosition=271 -yPosition=119 diff --git a/ttt.docx b/ttt.docx deleted file mode 100644 index f98e60d..0000000 Binary files a/ttt.docx and /dev/null differ diff --git a/文档模板:项目描述.docx b/文档模板:项目描述.docx deleted file mode 100644 index f98e60d..0000000 Binary files a/文档模板:项目描述.docx and /dev/null differ diff --git a/游戏设计与开发大作业任务书(2023).doc b/游戏设计与开发大作业任务书(2023).doc deleted file mode 100644 index 039af9e..0000000 Binary files a/游戏设计与开发大作业任务书(2023).doc and /dev/null differ diff --git a/编写目的.docx b/编写目的.docx deleted file mode 100644 index d1f5713..0000000 Binary files a/编写目的.docx and /dev/null differ