码迷,mamicode.com
首页 > 其他好文 > 详细

基础练习 01字串 蓝桥杯

时间:2018-02-28 14:07:46      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:str   pos   turn   ++   cout   main   for   string   i++   

#include<iostream>
#include<string>
using namespace std;
char ch[5];
void f(int k)
{
	if(k==5){
		for(int j=0;j<=4;j++)
	{
		cout<<ch[j];
	}
	cout<<endl;
	return ;
	}
	int i;
	for(i=0;i<=1;i++)
	{
		ch[k]=i+‘0‘;
		f(k+1);
	}
}
int main ()
{
	f(0);
   return 0; 
   }

  5个for

基础练习 01字串 蓝桥杯

标签:str   pos   turn   ++   cout   main   for   string   i++   

原文地址:https://www.cnblogs.com/zhangshuyao/p/8483040.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!