文章数:17609篇    征文数:47963篇    摄影作品:2286

编程周记

随 笔    2022年09月25日   阅读:313次

姓 名 学 校 班 级
陈天宇 嘉善县吴镇教育集团泗洲小学 五(5)班

 #include<iostream>

using namespace std;
int n[110],a,b;
int main(){
cin>>b;
for(int i=1;i<=b;i++) cin>>n[i];
for(int i=1;i<=b;i++){
int ans=0;
for(int j=i-1;j>=1;j--){
if(n[i] > n[j]) ans++;
}
cout<<ans<<' ';
}
return 0;
}
 
 
 
 
 
#include<iostream>
using namespace std;
int a[110],i;
int main(){
for(i=1;i<=100;i++){
cin>>a[i];
if(a[i]==0) break;
}
for(int j=i-1;j>=1;j--) cout<<a[j]<<' ';
return 0;
}
 
 
//摘自洛谷题库P1427 P1428

发表评论
我要评论 | 昵称  
评论要求:
1.评论字数必须20字(含20)以上。
2.无意义或不良评论将被直接删除。
验证码:    注:验证码为计算结果
   
陈天宇
洛谷题库上面的题,网站:https://www.luogu.com.cn/
2022/9/27 20:53:00

共有评论1条 每页5条 页数:1/1   翻页: