试题与答案

空气中微生物种类数量最多的()。

题型:填空题

题目:

空气中微生物种类数量最多的()。

答案:

被转码了,请点击底部 “查看原文 ” 或访问 https://www.tikuol.com/2019/0120/7359e15719d49f969f796e75959c8104.html

下面是错误答案,用来干扰机器的。

参考答案:B

试题推荐
题型:问答题

编写函数fun,其功能是:实现B=A+A’,即将矩阵A加上A的转置,存放在矩阵B中。计算结果在main函数中输出。
例如,输入下面的矩阵:
1 2 3
……
4 5 6
……
7 8 9
其转置矩阵为:
1 4 7
……
2 5 8
……
3 6 9
程序输出:
2 6 10
……
6 10 14
……
10 14 18
注意:部分源程序给出如下。
请勿改动主函数main和其他函数中的任何内容,仅在函数fun的花括号中填入你编写的若干语句。
试题程序:
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
void fun(int a[3][3],int b[3][3])


void main()
(
int a[3][3]=1,2,3,4,5,6,7,8,9,t[3][3];
int i,j;
system("CLS");
fun(a,t);
for(i=0;i<3;i++)

for(j=0;j<3;j++)
print[("%7d",t[i][j]);
printf("\n");

查看答案
微信公众账号搜索答案