已知二维数组元素的值,输入行下标和列下标,输出该行列元素的值 。例如, 输入 1,0 输出 a[1][0]=9填写程序中空白处,完善程序功能。(有2个空,答案一行写一个,不要添加多余的空格) #includemain(){ int a[3][4] = {1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23}; int row, col; printf(Input the value of row, col:) ; scanf(%d,%d, &row, &col); printf(a[%d][%d] = %d, row , , );}
举一反三
- 以下程序执行的结果是( )。#include <;stdio.h>;main(){ int i,j,row=0,col=0,m;static int a[3][3]={1,-2,0,4,-5,6,2,4};m=a[0][0];for(i=0;i<;3;i++)for(j=0;j<;3;j++)if(a[i][j]<;m){m=a[i][j];row=i;col=j;}printf("(%d,%d)=%d\n",row,col,m);}[/i][/i]
- 以下两行循环的嵌套,可以打印出倒三角(上大下小)的是: A: row 从 1 循环到 N col 从 1 循环到 N 输出 “ B: “ C: row 从 1 循环到 N col 从 1 循环到 row 输出 “ D: “ E: row 从 1 循环到 N col 从 1 循环到 N + 1 - row 输出 “ F: “ G: row 从 1 循环到 N col 从 1 循环到 row - N 输出 “ H: “
- 下列哪些函数功能是对全局表进行修改?( ) A: gettablestr(tablename, row, col) B: settablestr(tablename, row, col, “string”) C: gettablenum(tablename, row, col) D: settablenum(tablename, row, col, value)
- 在VBA中,将某个单元格的背景填充为绿色,文字颜色改为蓝色,则正确的是 A: Cells(row, col).Interior.Color = RGB(0, 255, 0):Cells(row, col).Font.Color = RGB(0, 0, 255) B: Cells(row, col).Interior.Color = RGB(0, 0, 255):Cells(row, col).Font.Color = RGB(0, 255, 0) C: Cells(row, col).Interior.Color = RGB(255, 255, 255):Cells(row, col).Font.Color = RGB(0, 0, 255) D: Cells(row, col).Interior.Color = RGB(0, 0, 0):Cells(row, col).Font.Color = RGB(0, 0, 255)
- 在n行n列的矩阵中,每行都有最大的数,本程序求这n个最大数中的最小一个。#include #define N 100int a[N][N]void main(){int row,col,max,min,n;/*输入合法n(<100),和输入n*n个整数到数组a的代码略*/for(row=0;rowmax)______;}printf(“the min of max numbers if %d\n”,min);}