为了这题我有多花
查看原帖
为了这题我有多花
875743
FJ_00460楼主2023/4/1 13:36
#include<iostream>
#include<string>
using namespace std;
string trueans, falseans;

int main()
{
    bool ans;
    trueans = "Hello,World!";
    falseans = "it's falseanswer";
    ans = true;
    if(ans)
    	cout << trueans << "\n";
    else
    	cout << falseans << "\n";
    //蒻篛的我不会三目运算符,求大佬帮忙教下。
    return 0;
}
2023/4/1 13:36
加载中...