無一分可增不叫完美,無一分可減纔是。--Antoine de Saint-Exuperyweb
刪除字符串空格微信
在程序中輸入一個字符串,編寫程序刪除字符串中全部空格,刪除空格後,輸出字符串。要求使用指針的方法解決。編輯器
輸入格式flex
字符串url
輸出格式spa
刪除掉空格後的字符串.net
輸入樣例3d
I am from guangdong指針
輸出樣例code
Iamfromguangdong
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}
「If you torture the data enough, it will confess」
- - Ronald Coase
本文分享自微信公衆號 - 電子榮耀(gh_05453579ed9d)。
若有侵權,請聯繫 support@oschina.cn 刪除。
本文參與「OSC源創計劃」,歡迎正在閱讀的你也加入,一塊兒分享。