ac1008.pas

来自「某牛人写的acm.tongji.edu.cn上大部分ac的代码,仅供学习研究,请」· PAS 代码 · 共 23 行

PAS
23
字号
program tju1008;
const
  maxn=34;
var
  a:array[1..maxn,0..maxn]of longint;
  n,c,i,j:byte;
begin
  a[1,1]:=1;
  for i:=2 to maxn do
    for j:=1 to i do
      a[i,j]:=a[i-1,j-1]+a[i-1,j];
  repeat
    read(n);inc(c);
    if c>1 then writeln;
    writeln('Case ',c,':');
    for i:=1 to n do begin
      for j:=1 to i-1 do
        write(a[i,j],' ');
      writeln(a[i,i]);
    end;
  until seekeof;
end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?