read user input of double type

后端 未结 4 1313
無奈伤痛
無奈伤痛 2021-01-18 07:18

I have found this answered in other places using loops, but I wasn\'t sure if there is actually a function that I\'m not finding that makes this easier, or if this is a poss

4条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-18 08:17

    Simplest answer to your question:

    double d = Double.Parse(Console.Readline());
    

提交回复
热议问题