首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有以下程序: int a=2; int f(int n) { static int a=3; int t=0; if(n % 2)(static int a=4; t+=a++;} else{static i
有以下程序: int a=2; int f(int n) { static int a=3; int t=0; if(n % 2)(static int a=4; t+=a++;} else{static i
admin
2010-09-05
41
问题
有以下程序: int a=2; int f(int n) { static int a=3; int t=0; if(n % 2)(static int a=4; t+=a++;} else{static int a=5; t+=a++;} return t+a++; } matin() { int s=a, i; for(i=0; i<3; i++)s+=f(i); printf("% d\n", s); } 程序运行后的输出结果是______。
选项
A、26
B、28
C、29
D、24
答案
C
解析
在某一函数中当全局变量与局部变量同名时,则在该函数中,全局变量被屏蔽,访问的是局部变量。因此,t+a++中的a用的是static int a=3的这个a。if语句的执行是当n是偶数时,执行else的部分,否则执行其后的部分。因此,当i=0时,t=5,s=2+8=10;i=1时,t=4,s=10+8=18;当i=2时,t=6,s=18+11=29。
转载请注明原文地址:https://kaotiyun.com/show/idWp777K
本试题收录于:
二级C语言题库NCRE全国计算机二级分类
0
二级C语言
NCRE全国计算机二级
相关试题推荐
下列过程定义语句中,形参数量可变的是()。
下面是求最大公约数的函数的首部:Functiongcd(ByValxAsInteger,ByValyAsInteger)AsInteger若要输出8、12、16这3个数的最大公约数,下面正确的语句是( )。
设有如下的程序段:n=0Fori=1Tb3Forj=1ToiFork=jTo3n=n+1NextkNextiNexti执行上面的程序段后,n
设有如下程序:OptionBase1Dima(3,4)AsInteger,b(4,3)AsIntegerPrivateSubCommandl_Click()’循环1Fori=1To3
窗体上有一个菜单编辑器设计的菜单。运行程序,并在窗体上单击鼠标右键,则弹出一个快捷菜单,如图所示,下列选项错误的是()。
假定有以下函数过程:FunctionFun(SAsString)AsString Dims1AsString Fori=1ToLen(S) s1=LCase(Mid(S,i,1))+s1 Nexti
设窗体文件中有下面的事件过程:PrivateSubCommand1_Click()Dimsa%=100PrintaEndSub其中变量a和s的数据类型分别是()。
下列程序的字符串中各单词之间有一个空格,则程序的输出结果是【】。#include<stdio.h>#include<string.h>main(){charstr1[]="Howdoyoudo",
随机试题
下列传染病主要通过血液传播的是()。
关于自然人和法人的权利能力,下列哪一选项是正确的?()
你是一个游乐场的负责人,游乐场人很多,门口发生拥堵现象,还有很多旅游团在门口等候。针对这种情况,你怎么处理?
量化宽松
下列关于信道容量的叙述,正确的是______。
HavingpassedwhatIconsideredtheworstobstacle,ourspirit【C1】______.Wemadetowardstheleftofthecliff,wherethegoing
Manycriticsofthecurrentwelfaresystemarguethatexistingwelfareregulationsfosterfamilyinstability.Theymaintainthat
ItcanbeinferredfromthefirstparagraphthatThebesttitleforthepassagewouldbe
Chinesefamiliesaretraditionallyknownforvaluingtheeducationoftheirchildren.Mostparentsaretryingto【B1】______their
由……组成
最新回复
(
0
)