invalid operands of types ‘float‘ and ‘int‘ to binary ‘operator&
时间: 2024-06-13 15:07:15 浏览: 149
c++ std::invalid_argument应用
5星 · 资源好评率100%
根据提供的引用内容,我们可以看出这是一个C语言的错误信息,其中%和&都是C语言中的二元运算符。%是求余数运算符,而&是按位与运算符。在C语言中,%和&只能用于整型数据,不能用于浮点型数据。因此,当我们将浮点型数据和整型数据一起使用%或&时,就会出现“invalid operands of types ‘float‘ and ‘int‘ to binary ‘operator%’”或“invalid operands of types ‘float‘ and ‘int‘ to binary ‘operator&’”这样的错误信息。
阅读全文