ready to work

This commit is contained in:
2023-11-01 12:14:46 +08:00
parent 1966cc7c66
commit 85caa0a582
6 changed files with 121 additions and 129 deletions

12
tester/proc.cpp Normal file
View File

@ -0,0 +1,12 @@
#include"int2048.h"
int main()
{
using namespace sjtu;
int2048 a("123456789");
a.print(); puts("");
a.LeftMoveBy(17);
a.print(); puts("");
a.RightMoveBy(17);
a.print(); puts("");
return 0;
}