📄 sinout.h
字号:
#pragma SInOut
/*TCC04-95 If the field width is too small, it's filled with * */
boolean ReadString(char &s[], unsigned int &pos, char &out[]);
boolean ReadCard(char &s[], unsigned int &pos, unsigned int &out);
boolean ReadInt(char &s[], unsigned int &pos, int &out);
boolean ReadLongInt(char &s[], unsigned int &pos, long &out);
boolean ReadReal(char &s[], unsigned int &pos, float &out);
boolean ReadBase(char &s[], unsigned int &pos, unsigned int &out, unsigned int base);
boolean ReadLongBase(char &s[], unsigned int &pos, long &out, unsigned int base);
void WriteCard(char &s[], unsigned int pos, unsigned int in, unsigned int width);
void WriteInt(char &s[], unsigned int pos, int in, unsigned int width);
void WriteLongInt(char &s[], unsigned int pos, long in, unsigned int width);
void WriteReal(char &s[], unsigned int pos, float in, unsigned int width);
void WriteBase(char &s[], unsigned int pos, unsigned int in, unsigned int width, unsigned int base);
void WriteLongBase(char &s[], unsigned int pos, long in, unsigned int width, unsigned int base);
void WriteString(char &s[], unsigned int pos, char in[]);
void WriteLn(char &s[], unsigned int pos);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -