博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
杭电2032杨辉三角
阅读量:5991 次
发布时间:2019-06-20

本文共 1354 字,大约阅读时间需要 4 分钟。

题目链接:

做该题时,开始就给出Presentation Error ( 程序总体正确,但是输出格式不符合要求!注意程序中的空格、空行)

开始的代码:

#include 
#include
using namespace std;int main(int argc, char *argv[]){ int n; int Array[31][31]={
0}; while(cin>>n) { for(int i=1;i<=n;i++) { for(int j=1;j<=n;j++) { if(i==j) Array[i][j]=1; if(j==1) Array[i][i]=1; if(i!=j) Array[i][j]=Array[i-1][j-1]+Array[i-1][j]; } } for(int i=1;i<=n;i++) { for(int j=1;j<=n;j++) { if(i>=j) cout<
<<" "; cout<

上面的代码问题出在了每一行多输出一个空格······

下面的代码是改正后的可以AC的:

#include 
#include
using namespace std;int main(int argc, char *argv[]){ int n; int Array[31][31]={
0}; while(cin>>n) { for(int i=1;i<=n;i++) { for(int j=1;j<=n;j++) { if(i==j) Array[i][j]=1; if(j==1) Array[i][i]=1; if(i!=j) Array[i][j]=Array[i-1][j-1]+Array[i-1][j]; } } for(int i=1;i<=n;i++) { for(int j=1;j<=n;j++) { if(i>j) cout<
<<" "; if(i==j) { cout<

 

转载于:https://www.cnblogs.com/gkfeng/archive/2012/07/31/2616821.html

你可能感兴趣的文章
Exchange 2013 cu16补丁更新
查看>>
Netty In Action中文版 - 第一章:Netty介绍
查看>>
关于Segmentation fault (core dumped)
查看>>
nginx + PHP (FastCGI) 高性能服务器部署
查看>>
nginx启动与停止
查看>>
unsquashfs的部署和用法
查看>>
Saltstack配置管理功能模块-haproxy
查看>>
shell 脚本检测密码,5次错误则停止
查看>>
bash的位置参数轮替(shift)
查看>>
PIX配置手册二(telnet和ssh)
查看>>
MySQL高可用之MHA
查看>>
python的一些基础的知识
查看>>
centos6.5突然没有Yum命令
查看>>
无法启动Outlook,无法打开Outlook窗口,无法打开文件夹的集合
查看>>
报告称三季度Android、iOS垄断智能机市场96%份额
查看>>
java启动dos命令收集笔记一
查看>>
图片无法显示,载入制定url失败
查看>>
如何在MAP/REDUCE中不检查输出路径?
查看>>
Redis系列--6、Redis Java连接操作
查看>>
Python之encode与decode浅析
查看>>