概念填空题5
#include
int main()
{ int k,x;
for (k = 0; x = 0; k <= 9 && x != 10)
k++;
x = x + 2;
printf("%d,%d", k,x);
return 0;
}
概念填空题6
#include
int main()
{
char c;
for (c = getchar(); getchar() != '#'; c = getchar())
putchar(c);
return 0;
}
单项选择题14
#include
int main()
{
char ch;
for (; (ch = getchar()) != 'n'; )
printf("%c", ch);
return 0;
}
单项选择题15
#include
int main()
{
int i, a = 1; unsigned j;
for (j = 15; j > 0; j -= 2)
a++;
return 0;
}
#include
int main()
{
int i;
for (i = 1; i < 6; i++)
{
if (i % 2)
printf("*");
else
printf("#");
}
return 0;
}
阅读程序题2
#include
int main()
{
int m=1,n,i;
for (i = 0; i < 5; i++)
{
int m=1;
m++;
if (i == 4)n = m;
}
printf("%d,%d", m, n);
return 0;
}
阅读程序题3
#include
int main()
{
int i;
for (i = 'a'; i < 'f'; i++, i++)
printf("%c",i-'a'+'A');
return 0;
}
阅读程序题4
#include
int main()
{
int f,f1,f2,i;
f1 = 1; f2 = 1;
printf("%2d%2d",f1,f2);
for(i=3;i<=5;i++)
{
f = f1 + f2;
printf("%2d", f);
f1 = f2; f2 = f;
}
return 0;
}
阅读程序题5
#include
int main()
{
int n = 5;
do
{ switch(n%2)
{
case 0:n--;
break;
case 1:n--; continue;
}
n--;
printf("%2d", n);
} while (n > 2);
return 0;
}
阅读程序题7
#include
int main()
{
int x=10;
while (x--);
printf("x=%dn", x);
return 0;
}
阅读程序题9
#include
int main()
{
int m=9;
for(;m>0;m--)
if(m%3==0)
printf("%d", --m);
return 0;
}
阅读程序题10
#include
int main()
{
int x=8;
for (; x > 0; x--)
if (x % 3 == 0) {
printf("%d", x--);
continue;
}
printf("%d", --x);
return 0;
}
阅读程序题11
#include
int main()
{
int x = 3;
do
{
printf("%3d", x = x - 3);
} while (!x);
return 0;
}
阅读程序题12
#include
int main()
{
int x = 2;
do
{
printf("%3d",! x - 2);
} while (--x);
return 0;
}
阅读程序题13
#include
int main()
{
int n = 12345,d;
while(n!=0)
{
d = n % 10;
printf("%d",d);
n = n / 10;
}
return 0;
}
阅读程序题14
#include
int main()
{
int m=0,sum=0;
char c, oldc = '+';
do
{
c = getchar();
if (c <= '9' && c >= '0')m = 10 * m + c - '0';
else
{
if (oldc == '+')sum += m;
else sum -= m;
m = 0;
oldc = c;
printf("%3d", sum);
}
} while (c != '=');
return 0;
}
阅读程序题16
#include
int main()
{
int t = 1, n = 235;
do
{
t *= n % 10;
n /= 10;
} while (n);
printf("%dn", t);
return 0;
}
阅读程序题18
#include
int main()
{
int i, m = 0;
for(i=0;i<5;i++)
{
switch (i)
{
case0:
case 1:m++;
case 3:m++;
case 4:m--; break;
}
}
printf("%dn", m);
return 0;
}
阅读程序题19
#include
int main()
{
int i, b = 0,c=2;
for(i=0;i<2;i++)
switch (++b,b*c)
{
case 1:printf("1");
case 2:printf("2");
case 3:printf("3"); break;
default:printf("othern");
}
return 0;
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)