刪除字符串空格(每日一練)

點擊上方藍字,記得關注咱們!



無一分可增不叫完美,無一分可減纔是。--Antoine de Saint-Exuperyweb

刪除字符串空格微信


1.題目描述

在程序中輸入一個字符串,編寫程序刪除字符串中全部空格,刪除空格後,輸出字符串。要求使用指針的方法解決。編輯器



2.格式與樣例

輸入格式flex

字符串url

輸出格式spa

刪除掉空格後的字符串.net


輸入樣例3d

I am from guangdong指針

輸出樣例code

Iamfromguangdong



3.參考答案
 1#include<stdio.h>
2#include<string.h>
3int main()
4
{
5    char s[80];
6    char *p,*q;
7    gets(s);
8    p=s;
9    q=p;
10    while(*q!='\0')
11    {
12        if(*q!=' ')
13        {
14            *p++=*q;
15        }
16        q++;
17    }
18    *p='\0';
19    puts(s);
20    system("pause");
21}




END

「If you torture the data enough, it will confess」

             - - Ronald Coase


「閱讀原文」咱們一塊兒進步



本文分享自微信公衆號 - 電子榮耀(gh_05453579ed9d)。
若有侵權,請聯繫 support@oschina.cn 刪除。
本文參與「OSC源創計劃」,歡迎正在閱讀的你也加入,一塊兒分享。

相關文章
相關標籤/搜索