提交时间:2024-11-01 16:34:58
运行 ID: 54988
#include<bits/stdc++.h> using namespace std; int main() { double a, d; cin >> a >> d; double g = a/d; if(g>1.2){ cout<<"青龙"; }else if(g==1.2){ cout<<"青龙"; }else if(g<0.8){ cout<<"玄武"; }else{ cout << "白虎"; } return 0; }