网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
语句PrintAbs(-6^2)+Int(-6^2)的输出结果是()。
- A、0
- B、1
- C、-1
- D、-72
参考答案
更多 “语句PrintAbs(-6^2)+Int(-6^2)的输出结果是()。A、0B、1C、-1D、-72” 相关考题
考题
下列程序的输出结果是()。includeint b=2;int func(int*A){b+=*a;return b;}main(){int
下列程序的输出结果是( )。 #include<stdio.h> int b=2; int func(int*A){ b+=*a;return b;} main() { int a=1,t=2; t+=func(a); printf("%d\n",t); }A.4B.5C.6D.8
考题
语句:print sgn(-6^2)+Abs(-6^2)+int(-6^2)的输出结果是( )A.-36B.1C.-1D.-7252967.以下语句a=sqr(3)print format(a,####.###)的输出结果是( )A.1.732B. 0001.732C.###1.732D. 1.7320
考题
定义如下变量和数组:int i;int y[2][3]={2,4,6,8,10,12};则下面语句的输出结果是【 】。for(i=0;i<2;i++)cout<<y[1-i)[i+1]<<",";
考题
下列程序的输出结果是includeint b=2;int func(int *a) {b+=*a;return(b) ;}void m
下列程序的输出结果是 #include<iostream.h> int b=2; int func(int *a) {b+=*a;return(b) ;} void main( ) { int a=2,res=2; res+=func(a) ; cout<<res;}A.4B.6C.8D.10
考题
下列程序的输出结果是()。includevoid main().{int b[6]={2,4,6,8,10,12}; int*p=b,**q
下列程序的输出结果是( )。 #include<stdio.h> void main(). { int b[6]={2,4,6,8,10,12}; int*p=b,**q=p; printf("%d", *(p++)); printf("%d,",**q); }A.4,4B.2,2C.4,5D.2,4
考题
下面程序的输出结果是() include main( ) { int i,a[ ]={2,4,6,8}; int * p=a;
下面程序的输出结果是 ( ) # include<stdio.h> main( ) { int i,a[ ]={2,4,6,8}; int * p=a; for(i=0;i<4;i+ +)a[i]=* p+ +; printf(*%d\n",a[2]); }A.6B.8C.4D.2
考题
下面程序的输出结果是( )。include using namespace std;void main(){int s;for(int k
下面程序的输出结果是( )。#include <iostream>using namespace std;void main(){int s;for(int k=2;k<6;k+=2)s=1;for(int j=k; j<6;j++) s+=j;cout<<s<<end1;A.9B.1C.11D.10
考题
下列程序的输出结果是______。include main(){ int i=1,j=3; printf("%d,",i++); {int
下列程序的输出结果是______。#include <stdio.h>main (){ int i=1,j=3; printf("%d,",i++); { int i=0; i+=j*2; printf("%d,%d,",i,j); } printf("%d,%d\n",i,j);}A.1,6,3,1,3B.1,6,3,2,3C.1,6,3,6,3D.1,7,3,2,3
考题
语句Print Sgn(-6^2)+Abs(-6^2)+Int(-6^2)的输出结果是( )。A.-36B.1C.-1S
语句Print Sgn(-6^2)+Abs(-6^2)+Int(-6^2)的输出结果是( )。A.-36B.1C.-1D.-72
考题
以下程序的输出结果是 include void main( ) {int x=1,y=3; cout
以下程序的输出结果是#include<iostream.h>void main( ){int x=1,y=3;cout < < x++ < < ",";{int x=0;x+=y * 2;cout < < x < <"," < < y < <",";}cout < < x < < "," < < y;}A.1,6,3,1,3B.1,6,3,6,3C.1,6,3,2,3D.1,7,3,2,3
考题
下列程序舶输出结果是【 】。include main() {int a[5]={2,4,6,8,10},*p;p=a;p++;printf("
下列程序舶输出结果是【 】。include <stdio.h>main(){int a[5]={2,4,6,8,10},*p;p=a;p++;printf("%d",*p);}
考题
下面程序的输出结果是()includeusing namespace std;int main(){int s:for(int k=2;k
下面程序的输出结果是( ) #include<iostream> using namespace std; int main() { int s: for(int k=2;k<6;k+=2){ s=1; for(int j=k, j<6;j++)s+=j; } cout<<s<<end1: }A.9B.1C.11D.10
考题
下列程序的输出结果是int b=2;int func(int *a){ b+=*a; return(b);}main(){ int a=2, res=2; res += func( printf("%d\n",res);} A.2 B.4C.6 D.8
考题
定义变量和数组如下:int i;int x[3][3]=(1,2,3,4,5,6,7,8,9);则语句for(i=0;i<3;i++)printf(”%d”,x[1][2-i]);的输出结果是 ( )
考题
若有以下程序 include int a[ ]={2,4,6,8}; main( ) { int i; int *p=a; for(i=0;i
若有以下程序#include <stdio.h>int a[ ]={2,4,6,8};main( ){ int i;int *p=a;for(i=0;i<4;i++) a[i]=*p;printf("%d\n",a[2]);}上面程序的输出结果是A.6B.8C.4D.2
考题
下列程序的输出结果是()。includeint b=2;int func(int *a){b+=*a;return(b);}main(){i
下列程序的输出结果是( )。 #include <stdio.h> int b=2; int func(int *a) { b+=*a;return(b);} main() { int a=2, res=2; res+=func(a); printf("%d\n",res); }A.4B.6C.8D.10
考题
下列程序的输出结果是inClUdeiht b=2;int funC (int*a) { b+=*a;return(b);}void m
下列程序的输出结果是 #inClUde<iostream.h> iht b=2; int funC (int*a) { b+=*a;return(b);} void main() { inta=2,res=2; res+=func(a); cout<<res;}A.4B.6C.8D.10
考题
下列程序的输出结果是______。 int b=2; int func(int*a) {b+=*a;return(b); } main() { int a=2,res=2; res+=func(b); printf("%d\n,res); }A.4B.6C.8D.10
考题
(6)以下程序运行后的输出结果是 【6】 。#include stdio.hmain(){ int a;a=(int)((double)(3/2)+0.5+(int)1.99*2);printf("%d\n",a);}
考题
单选题语句PrintAbs(-6^2)+Int(-6^2)的输出结果是()。A
0B
1C
-1D
-72
热门标签
最新试卷