下面的代码应该使用停止者密码加密一个句子,它仍然是 WIP,我没有考虑空格、小写字母等。
int main(int argc,string argv[])
{
int k = atoi(argv[1]);
string value = GetString();
int n = strlen(value);
for(int i = 0;i<n; i++);
{
char temp = value[i];
int conv = temp - (int)'A';
int cipher = (conv + k)%26;
char final = cipher + (int)'A';
printf("%c\n",final);
}
}
我明白了
caeser.c:15:23 use of undeclared identifier i.
这是在线char temp = value[i];