华东交通大学C++2010(3)

发布时间:2021-06-09

{

case 5:switch(b)

{

case 5:i++;break;

case 6:j++;break;

default:i++;j++;

}

case 6:i++;

j++;

break;

default:i++;j++;

}

cout<<i<<”,”<<j<<endl;

}

4.以下程序运行后,a,b,c,d,e=

int a,b,c,w=1,x=2,y=3,z=4,d=5,e=6;

a=b=c=3;

++a||++b&&++c;

(d=w>x)&&(c=y>z);

cout<<a<<b<<c<<d<<e;

5.运行程序后,输出结果

#include<iostream.h>

#define N 5

void fun();

void main()

{

for(int i=1;i<N;i++)

fun();

}

void fun()

{

static int a;

int b=2;

cout<<(a+=3,a+b)<<endl;

}

6.运行程序后,输出结果

#include<iostream.h>

void fun(int,int,int *);

void main()

{

int x,y,z;

fun(5,6,&x);

fun(7,x,&y);

fun(x,y,&z);

精彩图片

热门精选

大家正在看