CS50 - pset2 - 维吉尼
Posted
技术标签:
【中文标题】CS50 - pset2 - 维吉尼【英文标题】:CS50 - pset2 - Vigenere 【发布时间】:2016-02-25 14:21:18 【问题描述】:我目前正在努力使用 pset2,尤其是 vigenere。
这是我的代码:
# include <cs50.h>
# include <ctype.h>
# include <stdio.h>
# include <stdlib.h>
# include <string.h>
int main (int argc, string argv[])
//Assess the fact that there is only 1 command line argument
if(argc != 2)
printf("You should only have 1 command line argument !\n") ;
return 1 ;
string k = argv[1] ;
int klength = strlen(k) ;
for(int i = 0; i < klength; i++)
if(!isalpha(k[i]))
printf("Please make sure the argument is only composed of alphabetical characters\n") ;
return 1 ;
//Get the text to be crypted
string s = GetString() ;
int slength = strlen(s) ;
//Deliver the crypted text
for( int i = 0, j = 0 ; i < slength ; i++)
int kindex = j % klength ;
if(isalpha(s[i]))
if(isupper(s[i]))
if(isupper(k[kindex]))
int crypt = (((s[i] - 'A') + (k[kindex] - 'A') % 26)) + 'A' ;
printf("%c", crypt ) ;
else
int crypt = (((s[i] - 'A') + (k[kindex] - 'a')) % 26) + 'A' ;
printf("%c", crypt ) ;
if(islower(s[i]))
if(isupper(k[kindex]))
int crypt = (((s[i] - 'a') + (k[kindex] - 'A')) % 26) + 'a' ;
printf("%c", crypt) ;
else
int crypt = (((s[i] - 'a') + (k[kindex] - 'a')) % 26) + 'a' ;
printf("%c", crypt ) ;
j++ ;
else
printf("%c" , s[i]) ;
printf("\n") ;
return 0 ;
使用 check50,以下是我收到的错误:
:( 使用“BaZ”作为关键字将“BaRFoo”加密为“CaQGon” \ 预期输出,但不是 "CakGon\n" :( 使用“BAZ”作为关键字将“BARFOO”加密为“CAQGON” \ 预期输出,但不是 "CAkGOh\n"
这是我的沙盒:sandbox 我不明白为什么这两个输出不一样(cakgon vs cakoh)以及为什么它与预期的不同。问题可能出在“//Deliver the crypted test”部分。
我花了几个小时试图弄清楚但没有成功。
提前感谢任何帮助/提示/建议。
巴蒂斯特
【问题讨论】:
您没有描述您遇到的任何问题。 我已经编辑了帖子,试图更仔细地描述问题。感谢您的反馈。 【参考方案1】:我终于明白了。 “%26”之一之前缺少括号。
【讨论】:
以上是关于CS50 - pset2 - 维吉尼的主要内容,如果未能解决你的问题,请参考以下文章