C++编程第27题_C/C++_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > C/C++ > C++编程第27题

C++编程第27题

 2013/5/19 14:48:01  流浪的红舞鞋  程序员俱乐部  我要评论(0)
  • 摘要:#include<iostream>#include"stdio.h"usingnamespacestd;voidconverse(intn);intmain(){inti=5;cout<<"Pleaseinputthestring:";converse(i);cout<<endl;return0;}voidconverse(intn){charnext;if(n<=1){next=getchar();putchar(next);}else
  • 标签:c++ 编程
#include <iostream>
#include "stdio.h"
using namespace std;
void converse(int n);
int main(){
int i=5;
cout<<"Please input the string : ";
converse(i);
cout<<endl;
return 0;
}
void converse(int n){
char next;
if(n<=1){
next=getchar();
putchar(next);
}else{
next=getchar();
converse(n-1);
putchar(next);
}
}
  • class='magplus' title='点击查看原始大小图片' />
  • 大小: 24.9 KB
  • 查看图片附件
上一篇: C++编程第28题 下一篇: C++编程第24题
发表评论
用户名: 匿名