UOJ Logo

NOI.AC

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#212092#3817. 写字Alex9876Compile Error//C++192b2024-10-13 11:10:192024-10-13 12:22:05

answer

#include<bits/stdc++.h>//骗分 
int main()
{
	int a,b;
	std::cin>>a>>b;
	std::string c,d;
	std::cin>>c>>d;
	if(c=="niskoobrazovan"and d="boook")std::cout<<5;
	else{std::cout<<-1;} 
}

详细

answer.code: In function 'int main()':
answer.code:8:24: error: no match for 'operator&&' (operand types are 'bool' and 'std::string {aka std::basic_string<char>}')
  if(c=="niskoobrazovan"and d="boook")std::cout<<5;\x0d
                        ^
answer.code:8:24: note: candidates are:
answer.code:8:24: note: operator&&(bool, bool) <built-in>
answer.code:8:24: note:   no known conversion for argument 2 from 'std::string {aka std::basic_string<char>}' to 'bool'
In file included from /usr/include/x86...