程序员必犯的100件错误

31 阅读1分钟

数据类型为double 所以不能用"a"

如果要用"a" 就要用char

void func1(int a , double b){
	
}

int main(){
	
	func1(1,"a");
	
	return 0;
}