[单选题]有如下程序#include "stdio.h"fun(int a,int b){ int s; s=a*(b/4); printf("%d\n",s);}main(){ int a=16,b=10; fun(a,b);}该程序的输出结果是
正确答案 :B
32
解析:题目给出的程序分为两个部分:主函数main和函数fun。main函数给出了整型变量a,b的初始值,并将整型变量a,b作为fun的实参。fun函数的功能是计算s的值并输出。对于整型变量,运算符“/”的作用是求出两个数除法所得商的整数部分。s=a*(b/4),a的初始值为16,b的初始值为10,b/4的结果为2,a*2得32。
[多选题]以下语句错误的是( )
正确答案 :A
alter table emp delete column addcolumn;
[单选题]有如下程序段: Dim str As String*10 Dim i Str1="abcdefg" i=12 len1=Len(i) str2=Right(str1,4) 执行后,len1和str2的返回值分别是______。
正确答案 :C
2,defg
解析:解析:Len()是字符串长度检测函数,i=12,所以字符串长度为2。Right(字符串表达式 >,N1>)从字符串右起取N1个字符。
[单选题]若有以下变量和函数说明: #includeiostream.h> charCh='*'; void sub (int x,int y,char ch,double*Z) { switch(ch) { case'+':*Z=x+y;break: case'-':*Z=x-y;break: case'*':*Z=x*y; break: case'/':*Z=X/y;break; } } 以下合法的函数调用语句是(
正确答案 :A
sub(1.2+3,2*2,'+',&Z);
[单选题]若a、b、c1、c2、x、y均是整型变量,则正确的switch语句是______。
正确答案 :D
switch(a-b) { default:y=a*b;break; case 3:case 4:x=a+b;break; case 10:case 11:y=a-b;break; }
查看原题 查看所有试题