1
我不知道如何去做這件事,但是我怎樣才能從用戶輸入的某些次數在abcs中從一個角色移動到另一個角色呢?我怎樣才能把它放在一個圈子裏? (就像如果char是Z,將編譯器知道它應該去並重新開始?)如何旋轉字符的一定數量的字母?
在此先感謝
int encode(int ch, int shift);
printf(Move the characters to the right or left? "%c/n");
if (right){
printf (Rotate right by how much? "%i/n");
scanf ("%i");
if (%i >= 1){
%i++;
} else if (%i <= 1)
%i--;
}
} else if (left) {
printf (Rotate left by how much? "%i/n");
scanf ("%i");
if (%i >= 1){
%i++;
} else if (%i <= 1)
%i--;
}
如果您認爲我已回答您的問題,請通過將問題標記爲已接受來關閉主題。 – Hiti3