?? cypher1.c
字號:
/* cypher1.c -- alters input, preserving spaces */
#include <stdio.h>
#define SPACE ' ' /* that's quote-space-quote */
int main(void)
{
char ch;
ch = getchar(); /* read a character */
while (ch != '\n') /* while not end of line */
{
if (ch == SPACE) /* leave the space */
putchar(ch); /* character unchanged */
else
putchar(ch + 1); /* change other characters */
ch = getchar(); /* get next character */
}
putchar(ch); /* print the newline */
return 0;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -