题目描述 输入:in 输出:out 令输出信号和输入信号一致。 代码 module top_module( input in, output out ); assign out = in; endmodule 结果