vc++6.0为什么老是说this file does not exist.do you want to build it?

#include<iostream>#include<string>usingnamespacestd;/***单词对象*/structWord{Word():Str("... #include <iostream>#include <string>
using namespace std;/** * 单词对象 */struct Word{ Word() : Str(""), Count(0) {} string Str; int Count;
/** * 交换单词(用于排序) * @param word 交换的单词对象 */ void exchange(Word &word) { string tStr = word.Str; int tCount = word.Count; word.Str = Str; word.Count = Count; Str = tStr; Count = tCount; }};
/** * 统计词频 * @param words 单词数组 * @param newWord 单词内容 * @param size 单词总数 */void CalcCount(Word * words, string &newWord, int size){ int i = 0; for(; i < size; i++) { if(words[i].Str == newWord) { words[i].Count++; return; } else if(words[i].Str == "") break; } words[i].Str = newWord; words[i].Count = 1;}
/** * 以单词出现频率降序排列单词 * @param words 单词数组 * @param size 单词数量 */void SortWordDown(Word * words, int size){ for(int i = 0; i < size; i++) { for(int j = 0; j < size-1; j++) { if(words[j].Count < words[j+1].Count) { words[j].exchange(words[j+1]); } } }}
int main(){ Word * words; string content; cout << "输入一段英文:"; getline(cin, content);
//计算单词总数 int wCount = 1; for(unsigned int i = 0; i < content.length(); i++) { if(content[i] == ' ') wCount++; } words = new Word[wCount];
string::size_type offset = content.find(' ');//单词都是以空格隔开 while(offset != string::npos) { string wStr = content.substr(0, offset); content.erase(0, offset+1); CalcCount(words, wStr, wCount); offset = content.find(' '); } CalcCount(words, content, wCount);//计算最后一个单词
SortWordDown(words, wCount); int printCount = wCount < 5 ? wCount : 5; cout << "出现频率最高的前" << printCount << "个单词是:" << endl; for(int i = 0; i < printCount; i++) { cout << words[i].Str << "\t频率:" << words[i].Count << "次" << endl; }
delete [] words; return 0;}
展开
 我来答
御坂妹妹15842
2014-01-01 · TA获得超过326个赞
知道小有建树答主
回答量:197
采纳率:0%
帮助的人:225万
展开全部
你修改程序后没有重新build构建程序,所以你在尝试run的时候vc会提示你先构建。你注意看看是不是有error。另外建议不要用vc6了,太老了。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式