为什么错了啊

P1914 小书童——凯撒密码

AnthonyZHOU @ 2022-08-19 23:56:05

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define SIZE 64 
typedef struct Ring
{
    struct Ring *next;
    char element;
} ring;

ring *initRing()
{
    ring *p=NULL;
    ring *temp=(ring*)malloc(sizeof(ring));
    temp->element='a';
    temp->next=NULL;
    p=temp;
    for(int i=2;i<=26;i++)
    {
        ring *a=(ring*)malloc(sizeof(ring));
        a->element='a'-1+i;
        a->next=NULL;
        temp->next=a;
        temp=temp->next;
    }
    temp->next=p;
    return p;
}

int main()
{
    int n;
    char str[SIZE];
    scanf("%d",&n);
    getchar();
    ring *p=initRing();
    gets(str);
    for(int i=0;i<strlen(str);i++)
    {
        ring *temp=p;
        for(int a=0;a<str[i]-'a';a++)
        {
            temp=temp->next;
        }
        for(int j=0;j<n;j++)
        {
            temp=temp->next;
        }
        putchar(temp->element);
    }
}

by qhcKing @ 2022-10-01 20:48:24

@AnthonyZHOU 代码太乱 易出错 建议这样写

#include <bits/stdc++.h>
using namespace std;
int main()
{
    string s;
    int n,i,j;
    cin>>n;
    cin>>s;
    for(i=0;i<s.size();++i)
    {
        for(j=1;j<=n;++j)
        {
            ++s[i];
            if(s[i]>'z')
            s[i]='a';
        }
    }
    cout<<s;
    return 0;
}

代码很干净

AC记录AC

别谢我!!!


|