Long time no see

This commit is contained in:
2026-02-21 10:47:00 +07:00
parent 0d54fe176e
commit b7df98a55c
198 changed files with 3249 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
#include "head.h"
char get_num(void){
char ws;
do{
wchar_t ch; ws = 0;
while((ch=getwchar())>='0'&&ch<='9')
ws = (ws*10) + (ch-'0');
}while(ws==0);
return ws;
}
void get_row(wchar_t row[]){
}