2019年7月9日我的收获

今天是公元二O一九年七月九日,我今日学习了如下事件:
我学习了比例,a:b = 2=10(a=2,b=10),还可写成分数。如a:b = 2:10 =2/10
且交叉相乘积相等:2/10=1/5,那 分母a分子b=分子a分母b=25=101=10*10
我看了语文漫画作文,有些是有讽刺意义的。
我还大致了解了PET口语的形式和反面教材,背了一些单词
extreme fall knife length line graph match obstacle population rise teamwork weight translation
编程打了以下c++代码(2048【1】):

#clude
#include
#include
using namespace std;
int const ROW = 4;
int const COL = 4;
int game[ROW][COL]={0};
int const UP=1
int const DOWN=2
int const LEFT=3
int const RIGHT=4
int const GAME_OVER = 1;
int const GAME_WIN = 2;
int const GAME_CONTINUE = 3;
enum GameNum
{
Game_2 = 2,
Game_4 = 4,
Game_8 = 8,
Game_16 = 16,
Game_32 = 32,
Game_64 = 64,
Game_128 = 128,
Game_256 = 256,
Game_512 = 512,
Game_1024 = 1024,
Game_2 = 2,
};
void Print()
{
system(“cls”);
cout<<"**************** 2048 *"< cout<<" ByTanzf(Intern)"< for (int i = 0;i < ROW; ++i)
{
cout <<"---------------------------------"< for (int j = 0;j < COL; ++j)
{
if (game[i][j]==0)
{
cout<<"| \t";
}
else
{
cout <<"| “<< game[i][j]<<”\t";
}
}
bool CreateNumber()
{
int x = -1
int y = -1
int time = 0;
int maxTime = ROW * COL;
int whitch = rand() % 3
do
}

#include

int main() {
return 0;
}

你可能感兴趣的:(日记)