题解 | #序列中删除指定数字#

序列中删除指定数字

https://www.nowcoder.com/practice/7bbcdd2177a445a9b66da79512b32dd7

#include <stdio.h>
#include <stdlib.h>
int main() {
    int a,*b,i=0;
    scanf("%d",&a);
    b=(int*)malloc(sizeof(int)*(a+1));
    while (~scanf("%d",&b[i++]));
    for(i=0;i<a;i++)
    {
        if(b[i]==b[a])//跳过输出该数字
        continue;
        printf("%d ",b[i]);
    }
    return 0;
}

全部评论

相关推荐

10-15 16:27
门头沟学院 C++
LeoMoon:建议问一下是不是你给他付钱😅😅
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务