Chinaunix首页 | 论坛 | 博客
  • 博客访问: 256612
  • 博文数量: 50
  • 博客积分: 1410
  • 博客等级: 上尉
  • 技术积分: 525
  • 用 户 组: 普通用户
  • 注册时间: 2006-12-01 13:50
文章分类

全部博文(50)

文章存档

2016年(2)

2008年(1)

2007年(27)

2006年(20)

我的朋友

分类:

2007-04-18 22:04:06

read n;
if n>0 then
   factorial:=1;
   repeat
       factorial:=factorial*n;
       n:=n-1;
    until n=0;
write  factorial
end


//sort
read  x;
read  y;
read  z;
max:= x;
if max   max:=y;
 else
      if   max          max:=z
      end
end
write max;


//
read 2a;
read b;
read c;
if  2a*2a= b*b + c*c  then
    write 1;
    else  
         if   b*b= 2a*2a + c*c  then
           write 1;
               else 
                  if   c* c= 2a*2a +  c*c  then
                        write 1;
                  else  write 0  //;
                  end
      // end       
end


//
repeat 
     read a  ;
     sum=(sum+a;
     i=i+1
until a= 0;
 
write(sum/i);





阅读(1164) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~