当前位置:网站首页>Are the numbers entered symmetrical?
Are the numbers entered symmetrical?
2022-08-10 01:47:00 【-JMY-】
Title description
Enter an integer N from the keyboard (4<=N<=20), then input N numbers to determine whether the input numbers are symmetrical, which is the output
"YES", otherwise output "NO"?(Note that N can be odd or even).Symmetric means that the numbers are read forward and backward
It all reads the same.
For example, there are 4 numbers: 1 2 2 1,It is symmetrical. For example, there are 5 numbers: 1 2 3 2 1. It is also symmetrical, but there are 5 numbers: 1 2 3
1 2, it is not symmetrical.
Enter
Line 2 has n integers.
Output
Sample input
4
1 2 2 1
Sample output
YES
Reference code:
#include
using namespace std;
int n,a[15],t[25],maxn,k;
int main(){
scanf("%d",&n);
for(int i=0;i
for(int i=0;i
printf("NO");
return 0;
}
printf("YES");
return 0;
}
边栏推荐
- Creo5.0入门教程赠素材
- JVM Memory and Garbage Collection - 10. Direct Memory
- Docker 面试题2则--取数据库连接数和docker-compose
- 温度响应性纳米水凝胶光子品体/纤维素修饰荧光水凝胶/载脂质体水凝胶的制备方法
- Leetcode83. 删除排序链表中的重复元素
- flask——请求、响应、请求扩展、session、闪现、蓝图、g对象、flask-session
- 365天挑战LeetCode1000题——Day 052 逐步求和得到正数的最小值 贪心
- CVPR22 Oral|通过多尺度token聚合分流自注意力,代码已开源
- 【问题解决】训练和验证准确率很高,但测试准确率很低
- ETCD快速入门-02 ETCD安装
猜你喜欢

博弈小游戏

【毕业设计】 基于Stm32的家庭智能监控系统 - 单片机 图像识别 人体检测 AI

7. type( )函数——查询数据类型

字节技术面都过了,薪资都谈好了20K*13结果还是被刷了,问HR原因是。。。

Enhanced Deep Residual Networks for Single Image Super-Resolution

Today's sleep quality record 61 points

dlopen failed: library “libtaml.so“ not found

使用C语言实现静态链表

Leetcode80. 删除有序数组中的重复项 II

最高月薪15K,谁有历经千辛万苦的意志,谁就能收获属于自己的成功~
随机推荐
Leetcode81. 搜索旋转排序数组 II
【数据存储】signed,unsigned到底怎么区分?如何计算?
为什么不建议你在 Docker 中跑 Mysql ?
漫谈缺陷管理的自动化实践方案
CAS:183896-00-6 (Biotin-PEG3-C3-NH2) PEG derivative
深入理解Aarch64内存管理
Involved in PEG-Biotin (CAS: 1778736-18-7) Biotin-PEG4-OH is widely used in molecular target detection
字符统计柱状图
构建平衡二叉树「建议收藏」
快速响应性智能型/智能响应性聚乙二醇纳米/还原响应型水凝胶的研究与制备
ETCD快速入门-02 ETCD安装
Koa中间件next实现
CST Studio Suite 2021软件安装包和安装教程
[C language] In-depth understanding of pointers and arrays (issue 4)
深度剖析 Apache EventMesh 云原生分布式事件驱动架构
阿雷的血压有些低
JSP简介
arm-4-裸板开发
考柏的感慨
【C语言】通讯录《静态内存版本》