#include <stdio.h>
#include <string.h>
int main() {
char buf[500];
int i, len;
printf("입력:");
gets( buf);
len=strlen(buf);
printf(" input = %s \n", buf);
i=len;
while(i>0) {
i-=1;
if(buf[i]<0){
printf("%c%c", buf[i-1], buf[i]);
i-=1;
}
else printf("%c", buf[i]);
}
return 0;
}
'c·c++ > c 프로그래밍' 카테고리의 다른 글
랜덤키 만들기 (0) | 2011.12.07 |
---|---|
데이터 파일 읽어오기 (0) | 2011.12.06 |
축값이 중간에 있을 경우의 partition (0) | 2011.12.06 |
재귀함수에서 중복호출 횟수 확인하는 코드?? (0) | 2011.12.03 |
흥미로운 수열출력 (0) | 2011.12.03 |