c语言中,输入一行英文句子,将其中的空格用*取代,然后输出,谢谢大佬(*°∀°)=3
2个回答
展开全部
#include<StdAfx.h>
#include<stdio.h>
#include <conio.h>
#include <string.h>
int main()
{
char txt[1024];
printf("Please Input:");
scanf("%[^\n]",txt);
char* pTxt = txt;
while(*pTxt)
{
if(*pTxt == ' ') *pTxt = '*';
pTxt++;
}
printf("最后结果%s\n",txt);
return 0;
}
#include<stdio.h>
#include <conio.h>
#include <string.h>
int main()
{
char txt[1024];
printf("Please Input:");
scanf("%[^\n]",txt);
char* pTxt = txt;
while(*pTxt)
{
if(*pTxt == ' ') *pTxt = '*';
pTxt++;
}
printf("最后结果%s\n",txt);
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询