• 大小: 2.81KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-21
  • 语言: C/C++
  • 标签:

资源简介

C++实战源码-分解字符串中的单词(入门级实例202).zip

资源截图

代码片段和文件信息

// FjWord.cpp : Defines the entry point for the console application.
//

#include “stdafx.h“
#include “ioStream.h“

void ListString(char szString[])
{
char *pItem = szString; //定义一个临时字符指针
while(*pItem != ‘\0‘) //遍历字符串中的每一个字符
{
if (*pItem == ‘ ‘) //如果是空格则跳过
{
pItem++;
cout << endl;
}
cout << *pItem;
pItem++; //指向字符串下一个字符
}
cout << endl;
}


int main(int argc char* argv[])
{
char Str[100] = “Hello World!\n“;
cout << Str;
ListString(Str);
return 0;
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         557  2010-10-13 16:57  FjWord\FjWord.cpp
     文件        4536  2010-10-13 16:53  FjWord\FjWord.dsp
     文件         537  2010-10-13 16:53  FjWord\FjWord.dsw
     文件         293  2010-10-13 16:53  FjWord\StdAfx.cpp
     文件         769  2010-10-13 16:53  FjWord\StdAfx.h

评论

共有 条评论