输入一个一维整型数组,输出最大值、最小值和平均值(要求用指向一维字符数组的指针变量来处理数组元素)。
下面程序的功能是输出1000以内能被7整除且个位为5的所有整数。
include<stdio.h>
void main()
{
int i,m;
for(i=1;________;i++)
{m=i*10+5;
if(_______)continue;
printf("%\n",_______);
}
}
从键盘输入50个整数,计算并输出大于等于零的数的平均值(保留小数点后两位)
从键盘输入某个职工的工号、姓名和工资保存至结构体类型变量并输出。
#include< stdio.h>
typedef struct employee
{
int number;
char name[20];
float salary;
}________;
void main()
{
EMP em;
scanf("%d%s%f", &em. number,________,&em.salary);
printf("Number:%d\nName:%s\nSalary:%.1fn",________);
}
以下程序的功能是从键盘上输入若干个字符(以回车键作为结束)组成一个字符串存入一个字符数组,然后输出该字符数组中的字符串。
#include<stdio.h>
void main()
{
char str[51],*sptr;
int i;
for(i=0;i<50;i++)
{
str[i]=getchar();
if( str[i] =='\n')________;
}
str[i]=________;
sptr= str;
while(*sptr)putchar(*sptr________);
}
#include <stdio. h>
int fx( int n)
{
int s;
if(n==0)s=0;
else s=n+fx(n-2);
return s;
}
void main()
{
printf("%d\n", fx(8));
}
#include <stdio.h>
}
}
#include< stdio.h>
int sum(int n)/*递归函数*/
{
if(n==1) return 1;
else return n+ sum(n-1);
}
void main()
{
printf("sum =%d\n", sum(10));
}
设int a[2][3]={3,4,5,6,7,8};,则数组元素a[1][0]的值为_______。
#include<stdio.h>
管理信息系统2009年1月真题及答案
管理信息系统2009年10月真题及答
管理信息系统2010年1月真题及答案
管理信息系统2010年10月真题及答
管理信息系统2011年1月真题及答案
管理信息系统2011年10月真题及答
管理信息系统2012年4月真题及答案
管理信息系统2012年10月真题及答
管理信息系统2013年4月真题及答案
管理信息系统2013年10月真题及答