1、题目2、分析只有当a和b同时为1时,输出才为1,与门逻辑3、代码module top_module ( input a, input b, output q );// assign q = a & b; // Fix me endmodule4、结果