Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
24025 LeoWang 利剑与坚盾 C++ 通过 0 MS 248 KB 304 2023-08-02 22:17:42

Tests(1/1):


#include <iostream> using namespace std; int main(){ int attack,defend; cin >> attack >> defend; double n=attack/defend; if(n>=1.2){ cout << "Blue dragon" << endl; } if(n<0.8){ cout << "Xuanwu" << endl; } if((n>=0.8)&&(n<1.2)){ cout << "白虎" << endl; } return 0; }


测评信息: