我们使用Tensorflow,计算((a+b)*c)^2/a,然后求平方根.看代码: import tensorflow as tf # 输入储存容器 a = tf.placeholder(tf.float16) b = tf.placeholder(tf.float16) c = tf.placeholder(tf.float16) # 计算 d = tf.add(a, b) #加法 e = tf.multiply(d, c) #乘法 f = tf.pow(e, 2) #平方 g = tf.d…