| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 509 人关注过本帖
标题:帮忙看下这个程序, 出错的提示也看不太懂
取消只看楼主 加入收藏
jansonying
Rank: 2
等 级:论坛游民
帖 子:11
专家分:17
注 册:2011-5-7
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:2 
帮忙看下这个程序, 出错的提示也看不太懂
#include <iostream.h>
void main()
{
int i, j, k, l, n ;
cout<<"输入允许前面空出的行数:" ;
cin>>n;
for(j=1; j<=4; j++)
{
 for(i=1; i<=n; i++)
     cout<<' ';
 for(l=1; l<=8-2j; l++)
     cout<<' ';
 for(k=1; k<=2j-1; k++)
     cout<<'*';
cout<<endl;
}
for(j=1; j<=3; j++)
{for(i=1; i<=n; i++)
     cout<<' ';
 for(k=1; k<=7-2j; k++)
     cout<<'*';
cout<<endl;
}
}
搜索更多相关主题的帖子: include 
2014-05-15 09:03
jansonying
Rank: 2
等 级:论坛游民
帖 子:11
专家分:17
注 册:2011-5-7
收藏
得分:0 
回复 2 楼 wp231957
提示如下:

--------------------Configuration: test3 - Win32 Debug--------------------
Compiling...
test3.cpp
E:\test3\test3.cpp(11) : error C2059: syntax error : 'bad suffix on number'
E:\test3\test3.cpp(11) : error C2146: syntax error : missing ';' before identifier 'j'
E:\test3\test3.cpp(11) : error C2146: syntax error : missing ')' before identifier 'l'
E:\test3\test3.cpp(11) : error C2059: syntax error : ';'
E:\test3\test3.cpp(11) : error C2059: syntax error : ')'
E:\test3\test3.cpp(12) : error C2146: syntax error : missing ';' before identifier 'cout'
E:\test3\test3.cpp(13) : error C2059: syntax error : 'bad suffix on number'
E:\test3\test3.cpp(13) : error C2146: syntax error : missing ';' before identifier 'j'
E:\test3\test3.cpp(13) : error C2146: syntax error : missing ')' before identifier 'k'
E:\test3\test3.cpp(13) : warning C4552: '-' : operator has no effect; expected operator with side-effect
E:\test3\test3.cpp(13) : error C2059: syntax error : ';'
E:\test3\test3.cpp(13) : error C2059: syntax error : ')'
E:\test3\test3.cpp(14) : error C2146: syntax error : missing ';' before identifier 'cout'
E:\test3\test3.cpp(20) : error C2059: syntax error : 'bad suffix on number'
E:\test3\test3.cpp(20) : error C2146: syntax error : missing ';' before identifier 'j'
E:\test3\test3.cpp(20) : error C2146: syntax error : missing ')' before identifier 'k'
E:\test3\test3.cpp(20) : error C2059: syntax error : ';'
E:\test3\test3.cpp(20) : error C2059: syntax error : ')'
E:\test3\test3.cpp(21) : error C2146: syntax error : missing ';' before identifier 'cout'
Error executing cl.exe.

test3.obj - 18 error(s), 1 warning(s)

2014-05-15 09:30
jansonying
Rank: 2
等 级:论坛游民
帖 子:11
专家分:17
注 册:2011-5-7
收藏
得分:0 
可以运行了 谢了啦
2014-05-15 09:38
快速回复:帮忙看下这个程序, 出错的提示也看不太懂
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.129705 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved