int size = strlen(plain_text);int arrayelement = 0;for(arrayelement = 0; arrayelement < size; arrayelement++){ if (islower(plain_text[arrayelement])) { ciphered_text[arrayelement] = (int)(plain_text[arrayelement] + shiftkey); } else if (isupper(plain_text[arrayelement])) { ciphered_text[arrayelement] = (int)(plain_text[arrayelement] + shiftkey); }}ciphered_text[size] = '解决方法 我猜你使用像char这样的类型,这样就可以轻松解决不溢出问题int tmp_ciphered = (my_char + shift) % 0xff;char ciphered = (char)(tmp_ciphered);';printf("%s",ciphered_text);
然后你转身不要溢出,这是一个戒指
总结以上是内存溢出为你收集整理的密码溢出全部内容,希望文章能够帮你解决密码溢出所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)