美文网首页
让用户输入他的语文成绩和数学成绩,计算他的总成绩并显示出来

让用户输入他的语文成绩和数学成绩,计算他的总成绩并显示出来

作者: 29e0c7456d81 | 来源:发表于2018-12-19 22:19 被阅读0次

    //让用户输入他的语文成绩和数学成绩,计算他的总成绩并显示出来

     Console.WriteLine("请首先输入你的语文成绩");

    String strchinese = Console.ReadLine();

     Console.WriteLine("请输入你的数学成绩");

    String strmath = Console.ReadLine();//100 90

     int chinese = Convert.ToInt32(strchinese);

    int math = Convert.ToInt32(strmath);

     Console.WriteLine("你的总成绩是{0}",chinese+math);

     Console.ReadKey();

    相关文章

      网友评论

          本文标题:让用户输入他的语文成绩和数学成绩,计算他的总成绩并显示出来

          本文链接:https://www.haomeiwen.com/subject/rzzjkqtx.html