4个回答
展开全部
string old_str="010205111022";
string new_str="";
for(int i=0;i<old_str.length;i++){
new_str+=old_str.subString(i,1);//截取1个单位字符,语言不同可能调用的函数有所不同
if(i%2==1)
new_str+=" ";
}
string new_str="";
for(int i=0;i<old_str.length;i++){
new_str+=old_str.subString(i,1);//截取1个单位字符,语言不同可能调用的函数有所不同
if(i%2==1)
new_str+=" ";
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2011-07-28
展开全部
#include <stdio.h>
void main()
{
int i=0;
char s[100];
printf("\nEnter a string:\n");
gets(s);
while(s[i])
{
putchar(s[i]);
i++;
if(i%2==0)putchar(' ');
}
}
void main()
{
int i=0;
char s[100];
printf("\nEnter a string:\n");
gets(s);
while(s[i])
{
putchar(s[i]);
i++;
if(i%2==0)putchar(' ');
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
思路:把数用数组存储,然后每次输出两个再'\t',直到数组完...
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
int main(){printf("01 02 05 11 10 22");}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询