level 11
vb dim a as integer
c int a
2014年03月11日 14点03分
3
level 12
看什么类型数据,c是,数据类型 变量名,如 int a,string b
2014年03月11日 15点03分
4
level 4
#include <stdio.h>
main (void)
{
int a,v,c;
.............
............
............
return 0
}
VB中的dim等价于C语言中的int/double/long等
2014年03月17日 08点03分
9