- 博客(3)
- 收藏
- 关注
原创 error: expected identifier or '(' before numeric constant错误解决
在程序编译的时候,发现了error: expected identifier or '(' before numeric constant错误。从网络上查询,发现是difine的变量被滥用导致的。例如#define a 0.24enum VARIABLE{...a,//错误类型1...}int main(){ double a;//错误类型2}被defi...
2019-07-12 09:15:34 24497 5
原创 error: a label can only be part of a statement and a declaration is not a statement错误解决
今天在编译程序的时候编译器报了这个错误,发现错误指向的行是一个变量名的定义。在网上查询了一下,找到了原因。在switch语句下case的标签内,定义变量的问题。错误范例如下:switch(signal){ case 1: double a=90; //这行错误 ...... ...... break; de...
2019-06-27 09:36:31 1688
原创 Ubuntu 16.04安装cheat
cheat工具需要两个依赖,一个是python,另一个是pip。1.切换到root权限下:~$ su2.安装python# apt-get install Python3.安装Pip# apt-get install python-pip4.安装git# apt-get install git5.由于国内网络环境不好,对于pip进行一定的配...
2019-06-24 16:00:33 583
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人