Study/code up
[codeup] 1041 : [기초-산술연산] 문자 한 개 입력받아 다음 문자 출력하기
1nfra
2019. 7. 22. 20:06
728x90
1 2 3 4 5 6 7 8 9 | #include <stdio.h> int main() { char n; scanf("%c", &n); printf("%c", n+1); return 0; } | cs |
728x90