博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Problem A: 零起点学算法80——逆序输出(数组练习)
阅读量:5062 次
发布时间:2019-06-12

本文共 420 字,大约阅读时间需要 1 分钟。

#include
int main(){ int n,m,i,j,flag,a[20]; scanf("%d",&n); for(i=1;i<=n;i++){ scanf("%d",&m); flag=1; for(j=0;j
=0;j--){ if(flag){ printf("%d",a[j]); flag=0; } else printf(" %d",a[j]); } printf("\n"); } return 0;}

 

转载于:https://www.cnblogs.com/chenlong991223/p/9939003.html

你可能感兴趣的文章
延迟环境变量扩展(bat)
查看>>
Git的使用--打tag
查看>>
F# 编程 借助 F# 构建 MVVM 应用程序
查看>>
ACFUN切换代码自用。。。
查看>>
网卡流量检测.py
查看>>
【转】Android的权限permission
查看>>
ajax
查看>>
poj1981 Circle and Points 单位圆覆盖问题
查看>>
POP的Stroke动画
查看>>
线程同步机制初识 【转载】
查看>>
Oracle 游标使用全解
查看>>
Spring mvc annotation and xml example
查看>>
关于报错The specified child already has a parent的解决办法
查看>>
SQL语句在查询分析器中可以执行,代码中不能执行
查看>>
yii 1.x 添加 rules 验证url数组
查看>>
html+css 布局篇
查看>>
银行排队问题(详解队列)
查看>>
input输入提示历史记录
查看>>
序列化和反序列化(1)---[Serializable]
查看>>
linux命令**50
查看>>