fork download
  1. x = 5
  2. y = 3 * x **2 + 6 * x - 7
  3. print("当x=5时,y的值为:", y)
  4.  
Success #stdin #stdout 0.1s 14056KB
stdin
Standard input is empty
stdout
当x=5时,y的值为: 98