首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴feng12356的代码贴C语言
#include<iostream>
#include<string>
#include<vector>
using namespace std;
int main()
{
    vector<string>names;
    vector<int>value;
    string a;
    int b,i;
    while(cin>>a&&cin>>b)
    {
......................
阅读全部 | 2012年3月25日 21:56
1
feng12356