主题:新来的,冒冒泡,各位大虾帮帮忙
[color=000080]为什么我下面的程序不能运行,我用的是vc 2008,急死了,头都大了,大虾们帮帮忙吧.[/color]
// map.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include <iostream>
#include <map>
#include <string>
//#include "utility"
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
map<string,int> count_world;
string world;
while(cin>>world)
++count_world[world];
for(map<string,int>::iterator j=count_world.begin();j! =count_world.end;j++)
cout<<j->first<<' '<<j->second;
return 0;
}
// map.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include <iostream>
#include <map>
#include <string>
//#include "utility"
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
map<string,int> count_world;
string world;
while(cin>>world)
++count_world[world];
for(map<string,int>::iterator j=count_world.begin();j! =count_world.end;j++)
cout<<j->first<<' '<<j->second;
return 0;
}