#include<stdio.h>
#define END '~'
void Line_Edit()
{//行编辑程序:'#'为退格符,表示前一个字符无效;'@'为退行符,表示改行字符无效
char stack[100]; int top = -1;
printf("请用户输入数据:\n");
char ch = getchar();
while(ch != END)
{
while(ch != END && ch != '\n')
{
if(ch == '#') top --;
else if(ch == '@') top = -1;
else stack[++top] = ch;
ch = getchar();
}//退出循环时说明此时应换行或者终止输入,先将栈内字符输入用户数据区
//直接将栈逆序输出以检验程序是否有误
//***********************************************************//
int i = 0;
printf("以下为用户输入的数据:\n");
while(i<=top)
{
printf("%c", stack[i]);
i++;
}
top = -1;
//**********************************************************//
if(ch != END) ch = getchar(); //此时应换行,继续输入字符
}
printf("输入完毕!\n");
}
void main()
{
Line_Edit();
}