-
有以下程序
#include
main( )
{ int a[3][3]={{1,3,5,},
{7,9,11,
日期:1970-01-01 08:00:00
点击:6018
好评:0
...
-
有以下程序
#include
int m1(int x, int y )
{ if( x<= y ) return 2*x+1;
els
日期:1970-01-01 08:00:00
点击:6019
好评:0
...
-
有以下程序
#include
int mul(int val)
{ static int init = 1;
return init *=
日期:1970-01-01 08:00:00
点击:6018
好评:0
...
-
有以下程序段
char str[ 4 ][ 12 ]={"aaa","bbb","ccc","ddd" }, *p[4];
int i;
日期:1970-01-01 08:00:00
点击:6015
好评:0
...
-
有以下程序
#include
#define N 3
void fun( int x[][N], int *r1, int *r2 )
{
日期:1970-01-01 08:00:00
点击:6019
好评:0
...
-
有以下程序
#include
#define N 4
int fun( int a[][N] )
{ int i,j,x=0;
日期:1970-01-01 08:00:00
点击:6017
好评:0
...
-
有以下程序
#include
int fun( int *b, int n )
{ int i, r=1;
for( i=0; i<
日期:1970-01-01 08:00:00
点击:6023
好评:0
...
-
有以下程序
#include
int f( int k )
{ static int n=0;
int m=0;
n++;
日期:1970-01-01 08:00:00
点击:6017
好评:0
...
-
函数fun的功能是在a所指的具有n个元素的数组中查找最大值并返回给调用函数,
日期:1970-01-01 08:00:00
点击:6023
好评:0
...
-
有以下程序
#include
main( )
{ char b[4][10]; int i;
for ( i=0; i<4; i++
日期:1970-01-01 08:00:00
点击:6025
好评:0
...