求高手解答~~其实是初级小问题。。。
#include<iostream>using namespace std;
void P()
{
char ch;
cin>>ch;
if(ch!='.')
cout<<ch;
P();
}
void main()
{
cout<<"输入一个字符串:"<<endl;
P();
cout<<endl;
}
这个为什么不能这样编呢、
void P()
{
char ch;
if(ch!='.')
cout<<ch;
P();
}
void main()
{
char ch;
cout<<"输入一个字符串:"<<endl;
cin>>ch;
P();
cout<<endl;
}