能力值:
( LV2,RANK:10 )
|
-
-
2 楼
#include <iostream>
using namespace std;
int main()
{
char lpStr[255][255] = {
"hello, Han Meimei",
"hi, Lily",
"good bye"
};
cout << lpStr[1] << endl;
return 0;
}
|
能力值:
( LV13,RANK:1050 )
|
-
-
3 楼
String Str[255]; 应该注意大小写。
string Str[255];
|
能力值:
( LV2,RANK:10 )
|
-
-
4 楼
// use class string
#include <iostream>
using namespace std;
int main()
{
string lpStr[255];
lpStr[1].assign("hello world");
cout << lpStr[1].c_str() << endl;
return 0;
}
|
能力值:
( LV3,RANK:20 )
|
-
-
5 楼
谢谢大家的帮助!!!!!!!!!
|
能力值:
( LV2,RANK:10 )
|
-
-
6 楼
VC怎么那么难学啊,看到代码就头晕,DELPHI还好一点
|
能力值:
( LV3,RANK:20 )
|
-
-
7 楼
我刚接触了一下“VC++”,感觉 DELPHI 好像没 VC++ 灵活。。。。
|
能力值:
( LV2,RANK:10 )
|
-
-
8 楼
你也可以说OP严谨: )
|
|
|