![]() |
#2
hgchenkv2008-04-01 22:18
|
#include <iostream>
#include <string>
using namespace std;
void title(string &str);
void main()
{
string dsf;
cin>>dsf;
title(dsf);
}
void title(string &str) //这个函数很好啊
{
cout <<str <<endl;
}
为什么不能编译啊~~~~~