码迷,mamicode.com
首页 > 其他好文 > 详细

PTA----- 数字加密 (15分)

时间:2020-03-28 18:26:39      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:png   数字   技术   code   mamicode   number   include   img   encrypted   

技术图片

#include<stdio.h>
int main()
{
    int i = 3, x;
    int a[4];
    int temp;
    scanf("%d", &x);
    while (i != -1) 
    {
        a[i] = x % 10;
        x = x / 10;
        i--;
    }
    for (i = 0; i < 4; i++)
    {
        a[i] = a[i] + 9;
    }
    for (i = 0; i < 4; i++)
    {
        a[i] = a[i] % 10;
    }
    for (i = 0; i < 2; i++)
    {
        temp = a[i];
        a[i] = a[i + 2];
        a[i + 2] = temp;
    }
    printf("The encrypted number is ");
    for (i = 0; i < 4; i++)
    {
        printf("%d", a[i]);
    }
    return 0;
}

PTA----- 数字加密 (15分)

标签:png   数字   技术   code   mamicode   number   include   img   encrypted   

原文地址:https://blog.51cto.com/14737345/2482679

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!