1 条题解
-
0
C++ :
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; if(a>=90&&b>=90&&c>=90)cout<<"Yes"<<endl; else cout<<"No"<<endl; return 0; }
Python :
# coding=utf-8 a = int(input()) b = int(input()) c = int(input()) if(a>=90 and b>=90 and c>=90): print('Yes') else: print('No')
- 1
信息
- ID
- 550
- 时间
- 1000ms
- 内存
- 128MiB
- 难度
- (无)
- 标签
- 递交数
- 0
- 已通过
- 0
- 上传者