-4

以下のプログラムのエラーを修正しましたが、まだ混合出力が得られます。更新された結果は以下のとおりです。お知らせ下さい。

助けていただければ幸いです。関連するコード セクションは次のとおりです。

      string student::standing() const
      // post: use selection to return the current standing as either
      //       Freshman, Sophomore, Junior, or Senior.

      {    

          cout  << "Freshman";

      if (my_credits <= 60.00);
      {cout  << "Sophomore";}

      if (my_credits <= 90.00);
      {cout  << "Junior";}

      if (my_credits >= 90.00);
       else
       { cout  << "Senior";}

      }

      string student::name() const
      // post: return the student's name
      {
          {return my_name;}

      }
4

1 に答える 1