1 条题解

  • 0
    @ 2025-4-12 22:06:17

    Pascal :

    var a:real;
    begin
      read(a);
      if a>90 then writeln('A');
      if (a>=80)and (a<=90) then writeln('B');
      if (a>=60)and (a<=70) then writeln('C');
      if a<60 then writeln('D');
    end.
    
    
    • 1

    信息

    ID
    2875
    时间
    1000ms
    内存
    128MiB
    难度
    (无)
    标签
    (无)
    递交数
    0
    已通过
    0
    上传者