📄 struct.fc
字号:
struct test{ int a; int height; string b; int test; string c; int d;};struct str_test{ string name; string id; int height;};void main(string args[]){ test a; a.a =100; a.height = a.a + a.a; a.b = "string b"; a.test = a.height*2; a.c = "string c"; a.d =a.a+1; printf("struct test program start:\n"); printf("a's a is %d\n", a.a); printf("a's height is %d\n", a.height); printf("a's b is %s\n", a.b); printf("a's test is %d\n", a.test); printf("a's c is %s\n", a.c); printf("a's d is %d\n", a.d); str_test ffxz; ffxz.name = "fayfay"; ffxz.id = "ffxz"; ffxz.height = 180; printf("ffxz's name is %s\n", ffxz.name); printf("ffxz's id is %s\n", ffxz.id); printf("ffxz's height is %d\n", ffxz.height);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -