Yongkaching


私信TA

用户名:dotcpp0803828

访问量:4

签 名:

等  级
排  名 61474
经  验 216
参赛次数 0
文章发表 1
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

TA的其他文章

解题思路:穷举每个情况
注意事项:想好逻辑就行

参考代码:

#include<stdio.h>

int main()

{

        int n;

        scanf("%d", &n);

        int a = n % 10;

        int b = (n % 100)/ 10;

        int c = (n % 1000) / 100;

        int d = (n % 10000) / 1000;

        int e = n / 10000;

        if(e != 0){

            printf("5\n");

            printf("%d %d %d %d %d", e, d, c, b, a);

            printf("\n");

            printf("%d%d%d%d%d", a, b, c, d, e);


        }

        else if(e == 0 && d != 0){

            printf("4\n");

            printf("%d %d %d %d", d, c, b, a);

            printf("\n");

            printf("%d%d%d%d", a, b, c, d);

        }

        else if(e == 0 && d == 0){

            if(c != 0){

                printf("3\n");

                printf("%d %d %d", c, b, a);

                printf("\n");

                printf("%d%d%d", a, b, c);

            }

            else if(c == 0){

                if(b != 0){

                    printf("2\n");

                    printf("%d %d", b, a);

                    printf("\n");

                    printf("%d%d", a, b);

                }

                else if(b == 0){

                    printf("1\n");

                    printf("%d", a);

                    printf("\n");

                    printf("%d", a);

                }

            }

        }

        return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »