📄 subject_14397.htm
字号:
<p>
序号:14397 发表者:opelzhao 发表日期:2002-09-06 15:21:26
<br>主题:以下几个语句错在哪里?
<br>内容:以下几个语句错在哪里?<BR>#include <iostream><BR>##include <vector><BR>include <string><BR>using namespace std;<BR><BR>int main()<BR>{<BR>int num=3;<BR>vector<int> a,b,c;<BR>int * seq[num]={&a,&b,&c};<BR><BR>return 0;<BR>}
<br><a href="javascript:history.go(-1)">返回上页</a><br><a href=http://www.copathway.com/cndevforum/>访问论坛</a></p>
<hr size=1>
<blockquote><p>
<font color=red>答案被接受</font><br>回复者:天才 回复日期:2002-09-06 17:53:25
<br>内容:#include <iostream><BR>#include <vector><BR>#include <string><BR>using namespace std;<BR><BR>int main()<BR>{<BR>const int num=3;<BR>vector<int> a,b,c;<BR>int * seq[num]={a.begin(),b.begin(),c.begin()};<BR><BR>return 0;<BR>}<BR>2002-9-6 17:55:50
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -