以下代码的输出结果为()import tensorflow as tf a = tf.constant(2)b = tf.constant(3)c = tf.add(a, b) print(c) with tf.Session() as sess: print(sess.run(c)) A、5B、6C、2D、3 发布时间:2024-12-02 13:17:06