题解 | #有序序列判断#

有序序列判断

http://www.nowcoder.com/practice/22e87f8a8d764a6582710f38d1b40c6e

#include <stdio.h>
int main(){
    int n,a[50],temp;
    scanf("%d",&n);
    for(int i=0;i<n;i++){
        scanf("%d",&a[i]);
    }
    temp=a[0];
    int istrue=1;
    if(temp>=a[1]){
        for(int i=0;i<n-1;i++){
            if(a[i]<a[i+1]){
                istrue=0;
                printf("unsorted");
                break;
            }
        }
    }
    else{
        for(int i=0;i<n-1;i++){
            if(a[i]>a[i+1]){
                istrue=0;
                printf("unsorted");
                break;
            }
        }
    }
    if(istrue==1) printf("sorted");
    return 0;
}
全部评论

相关推荐

一个非常好用的遍历方法
AomaYple:不是指针,是引用
点赞 评论 收藏
分享
伟大的烤冷面被普调:暨大✌🏻就是强
点赞 评论 收藏
分享
躺尸修仙中:因为很多92的也去卷中小厂,反正投递简历不要钱,面试不要钱,时间冲突就推,不冲突就面试积累经验
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务