#2158. C++-编译-no matching function for call to 'func(type)'

C++-编译-no matching function for call to 'func(type)'

Background

Description

no matching function for call to 'func(type)'

没有与type匹配的重载函数,一般是不使用函数要求的类型作为输入

比如:

#include<iostream>
#include<cmath>
using namespace std;
int main(){
    cout<<log("123");    //log函数要求输入值为double类型,但是给了一个数组
    return 0;
}

Format

Input

Output

Samples



Limitation

1s, 1024KiB for each test case.