利用递归函数调用方式,将所输入的5个字符,以相反顺序打印出来.要用C++的
i=0;
foo();
{CHAR c;
getch(c);
i++;
if i<5 then foo;
write(c);
}