- 697 名前:678 [2012/05/21(月) 03:32:42.36 BE:3259166786-2BP(0)]
- #include<stdio.h>
int main(void) { int rot,loop; loop = 1; scanf("%c\n",&rot); while(loop <=100) { if('a'<=rot && rot<='m') rot = rot+13; else if('n'<= rot && rot<='z') rot = rot-13; scanf("%c\n",&rot); } return 0; } ここまでいったんですが、+13とか-13がされません。。。
|

|