我试图在C ++ 14中嵌套三元表达式。我的代码如下:
#include <bits/stdc++.h>
using namespace std;
int main() {
int i = 5;
string result = i % 2 == 0 ? "a" : i % 3 == 0 ? "b" : "c";
return 0;
}
我正在使用CLion。我在最后一个表达i % 3 == 0 ? "b" : "c"
的nexted表达式Type 'const char[2]' and 'const char[2]' are not compatible
上收到错误。我做错了什么?
如果有帮助,这是我的CMakeLists.txt:
cmake_minimum_required(VERSION 3.6)
project(TestCLion)
set(CMAKE_CXX_STANDARD 14)
set(SOURCE_FILES relop.cpp)
add_executable(TestCLion ${SOURCE_FILES})