1 条题解

  • 0
    @ 2025-4-12 21:43:15

    Pascal :

    var
      a:longint;
    begin
     readln(a);
      if a>=90 then write('A');
      if (a>=60) and (a<=89) then write('B');
      if a<60 then write('C');
    end.
    
    • 1

    信息

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