利用递归函数调用方式,将所输入的5个字符,以相反顺序打印出来,要用C++的
參考答案:#include <iostream>
using namespace std;
void print(char str[], int n)
{
if(n == 1)
{
cout<<str[0]<<endl;
return;
}
else
{
cout<<str[n-1]<<endl;;
print(str, n-1);
}
}
int main()
{
char a[] = "hello";
print(a, 5);
}