从键盘输入一串字符,以回车换行符为结束标志,分别统计并输出英文字符和数字字符的个数。
将从键盘输入的字符串写入文本文件out.txt,输入的字符串长度小于80。
#include
#include
void main()
{
char c[80];
_________; /*第一空*/
if((p=fopen("out.txt","w"))=NULL)
{ printf("Can not open file!\n"); exit(0); }
gets(_________); /*第二空*/
fputs(c, p);
fclose(_________); /*第三空*/
}
从键盘向一维数组输入50个实数,计算并输出其最大值和平均值。
下列程序中,主函数main调用函数 LineMax,求二维数组中每一行元素的最大值并输出。
void main()
{
int a, b, k=4, m=6, *p1=&k, *p2=&m;
a=(p1==p2);
b=(*p1)/(*p2)+7;
printf("a=%d,b=%d\n", a, b);
}
int f(int a)
{
int b=0;
static int c= 3;
b++; c++;
return(a+b+c);
}
void main()
{
int a=2, i;
for(i=0; i<3; i++) printf("%d/", f(a));
}
void f(int n)
{
if(n==0) return;
else { printf("%d", n%2); f(n-1); }
}
void main()
{ f(3); }
void main()
{
int x=5;
if(x--<5) printf("%d\n", x);
else printf("%d\n", x++);
}
执行 switch语句后输出结果是_________。
switch('B'-'A')
case 0: printf("A");
case 1: printf("B");
case 2: printf("C"); break;
default: printf("D");
管理信息系统2009年1月真题及答案
管理信息系统2009年10月真题及答
管理信息系统2010年1月真题及答案
管理信息系统2010年10月真题及答
管理信息系统2011年1月真题及答案
管理信息系统2011年10月真题及答
管理信息系统2012年4月真题及答案
管理信息系统2012年10月真题及答
管理信息系统2013年4月真题及答案
管理信息系统2013年10月真题及答