2020年3月30日
摘要: A Majestic 10 1.题意 给定三个数,判断有几个数不小于10。 2.题解 逐个判断,记录不小于10的数字的数量。 3.代码 1 #include<bits/stdc++.h> 2 using namespace std; 3 int n; 4 int main(){ 5 cin>>n; 阅读全文
posted @ 2020-03-30 16:10 吕瓜皮 阅读(230) 评论(0) 推荐(0)