网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)
下列函数的运行结果是()。includeint f(int a,int b){int c;if(a>b)c=1;else if(a==

下列函数的运行结果是( )。 #include<iostream.h> int f(int a,int b) {int c; if(a>b) c=1; else if(a==b)c=0 elsec=-1; return(c);} void main() {int i=2,j=3; int p=f(i,j); cout<<p:}

A.-1

B.1

C.2

D.编译出错,无法运行


参考答案

更多 “ 下列函数的运行结果是()。includeint f(int a,int b){int c;if(a>b)c=1;else if(a== 下列函数的运行结果是( )。 #include<iostream.h> int f(int a,int b) {int c; if(a>b) c=1; else if(a==b)c=0 elsec=-1; return(c);} void main() {int i=2,j=3; int p=f(i,j); cout<<p:}A.-1B.1C.2D.编译出错,无法运行 ” 相关考题
考题 下列函数的运行结果是main(){ int i=2,p;int j,k;j=i;k=++i;p=f(j,k);printf("%d",p);}int f(int a,int b){ int c;if(ab)c=1;else if(a==b)c=0;else c=-1;return(c);}A.-1B.1C.2D.编译出错,无法运行

考题 下列函数的运行结果是()。includeint f(int a,int B) {int c;if(a>b)c=1;else if(a= 下列函数的运行结果是( )。 #include<iostream.h> int f(int a,int B) { int c; if(a>b)c=1; else if(a==b)c=0; else c=-1; return(c);} void main() {int i=2,j=3; iht p=f(i,j); cout<<p;}A.-1B.1C.2D.编译出错,无法运行

考题 下列程序的输出结果是()。 include main() {int a=2,b=3,p; p=f(a,B) ; pdntf("%d",p); 下列程序的输出结果是( )。#include<stdio.h>main(){ int a=2,b=3,p;p=f(a,B) ;pdntf("%d",p);}int f(a,B){ int c;if(a>B) c=1;else if(a==B) c=0;elSe c=-1;return(C) ;}A.-1B.0C.1D.2

考题 下面程序的运行结果是 include int fun(int a[ ] ,int n) { int result=1; for(in 下面程序的运行结果是#include<iostream.h>int fun(int a[ ] ,int n){int result=1;for(int i=1;i<n;i++)result=result * a[i] ;retum result;}void main( ){int a[3] ={3,4,5};coutA.12B.15C.20D.60

考题 以下程序的执行结果是【】。 include int f(int b[],int n) { int i,r=1; for(i=0;i 以下程序的执行结果是【 】。include<iostream.h>int f(int b[],int n){int i,r=1;for(i=0;i<n;i++)r=r*b[i];return r;}void main(){int x,a[]={2,3,4,5,6,7,8,9};x=f(a,3);cout<<x<<endl;}

考题 下列函数的功能是【 】。include int Func(int a,int b) {if (a>b) return 1; else if 下列函数的功能是【 】。include<iostream. h>int Func(int a,int b){if (a>b) return 1;else if(a==b) return 0;else return -1;}

考题 以下程序的输出结果是 include int f( ) { static int i=0; int s=1 s+ =i; 以下程序的输出结果是 #include<iostream.h> int f( ) { static int i=0; int s=1 s+ =i; i++; return s;} void main( ) { int i,a=0; for(i=0 ;i<5;i++)a+=f( ); cout < < a;}A.20B.24C.25D.15

考题 有以下程序:includeusing namespace std;int f(int,int);int main(){ int i:1,x; x=f 有以下程序: #include<iostream> using namespace std; int f(int,int); int main() { int i:1,x; x=f(i,i+1); cout<<x<<end1; return 0; } int f(int a,int b) { int c; c = a; if(a>b) c = 1; else if(a==b) c = 0; else c = -2; return c; } 运行后的输出结果是( )。A.1B.0C.-1D.-2

考题 下列函数的运行结果是 include int f(int a,int b) { int c; if(a>b) c=1; else i 下列函数的运行结果是#include<iostream.h>int f(int a,int b){ int c;if(a>b) c=1;else if(a==b) c=0;else c=-1;return(c) ;}void main( ){ int i=2,j=3;int p=f(i, j) ;cout < < p;}A.-1B.1C.2D.编译出错,无法运行

考题 下列函数的运行结果是 main ( ) { int i=2,p; int j,k; j=i; k=++i; p=f(j,k); printf("%d",p); } int f(int a,int b) { int c; if(a>b)c=1; else if(a==b)c=0; else c=-1; return(c);}A.-1B.1C.2D.编译出错,无法运行

考题 下列函数的运行结果是includeint f(int a,int B){int c;if(a>b) c=1else if(a=b) c 下列函数的运行结果是 #include<iostream.h> int f(int a,int B) {int c; if(a>b) c=1 else if(a=b) c=0; else c=-1; return(c) ;} void main( ) { int i=2,j=3; int p=f(i,j); coutA.-1B.1C.2D.编译出错,无法运行

考题 有以下程序includeint f(int n){if(n==1)return 1:else return f(n-1)+1;}void mai 有以下程序 #include<iostream.h> int f(int n) {if(n==1)return 1: else return f(n-1)+1;} void main() {int i,j=0; for(i=1;i<3;i++):j+=f(i); cout<<j;} 程序运行后的输出结果是( )。A.4B.3C.2D.1

考题 下列程序的输出结果是()。includeint f(int a,int b);main(){int i=2,p,j,k; j=i;k=++i 下列程序的输出结果是( )。 #include <stdio.h> int f(int a,int b); main() { int i=2,p,j,k; j=i; k=++i; p=f(j,k); printf("%d",p); } int f(int a,int b) { int c; if(a>b)c=1; else if(a= =b) c=0; else c=-1; return(c); }A.-1B.1C.2D.编译出错,无法运行

考题 下列函数的运行结果是()。includeint add(int a,int b);void main(){extern int x,y 下列函数的运行结果是( )。 #include<iostream.h> int add(int a,int b); void main() { extern int x,y; cout<<add(x,y)(<endl; ) int x(20),y(5); int add(int a,intB) { int s=a+b; return s; }A.25B.30C.20D.15

考题 下列函数的运行结果是 main() {int i=2,p; int j,k; j=i;k=++i;p=f(j,k); printf("%d",p);} intf(int a,int B) {int c; if(a>b)c=1; else if(a==b)c=0; else c=-1; return(c);}A.-1B.1C.2D.编译出错,无法运行

考题 有以下程序includeint f(int n){if(n==1 )return 1;else return f(n-1 )+ 1;}void 有以下程序#include<iostream.h>int f(int n){if(n==1 )return 1;else return f(n-1 )+ 1;}void main() {int i,j=0;for(i=1 ;i<3;i++) j+=f(i);cout<<j<<end1;}程序运行后的输出结果是( )。A.4B.3C.2D.1

考题 有以下程序()。 include int f(int n) { if(n==1)return l; else return f(n-1)+1; 有以下程序( )。 #include<iostream.h> int f(int n) { if(n==1)return l; else return f(n-1)+1; } void main() { int i,j=-; for(i=1;i<3;i++) j+=f(i); cout<j<<endl; } 程序运行后输出结果是( )。A.4B.3C.2D.1

考题 有以下程序 include int f(int n) {if(n==1)return1; else return f(n-1)+1} voidm 有以下程序 #include<iostream.h> int f(int n) {if(n==1)return1; else return f(n-1)+1} voidmain() {int i,j=0; for(i=l i<3;i++)=i+=f(i); cout<<j;} 程序运行后的输出结果是( )。A.4B.3C.2D.1

考题 下面程序的输出结果是 #include stdio.h main(){ int i=2; printf("%d",f(i,i+1) ); } int f(int a,int b) { int c; c=a; if(ab) c=1; else if(a==b) c=0; else c=-1; return(c);}A.-1 B.0 C.1 D.2

考题 下面函数的运行结果是( )。 include using namespace std; class A{ pu 下面函数的运行结果是( )。 #include <iostream> using namespace std; class A{ public: A(){} int Min(int a,int b){return a<b? a:b;} int Min(int a,int b,int c){ if(a<b)return a<c? a:c; else return b<c? b:c; } ~A(){} }; void main(){ A a; cout<<a.Min(1,2,3)<<a.Min(2,0); }A.10B.12C.30D.32

考题 下列函数的运行结果是()。includeint add(int a,int b);void main(){extem int x,y; 下列函数的运行结果是( )。 #include<iostream.h> int add(int a,int b); void main() { extem int x,y; cout<<add(x,y)<<endl; } int x(20),y(5); int add(int a,int b) { int s=a+b; return s; )A.25B.30C.20D.15

考题 下列函数的运行结果是()。includeintf(int a, int b){ int c;if(a>b)c=1;elseif(a== 下列函数的运行结果是( )。 #include<iostream.h> intf( int a, int b) { int c; if(a>b) c=1; elseif(a==b)C=0; elsec=-1; return(c);} void main() {int i=2,j=3; int p=f(i,j); cout<<p;}A.-1B.1C.2D.编译出错,无法运行

考题 下列程序的输出结果是includeint min(int a,int b){if(a 下列程序的输出结果是 #include<iostream.h> int min(int a,int b) { if(a<b) return a; else return b; return0; } void main( ) { cout<<min (1,min (2,3))<<end1; }A.0B.1C.2D.3

考题 下列程序的输出结果是()。includemain(){ int a=2,b=3,p;p=f(a,b);printf("%d",p);}int 下列程序的输出结果是( )。 #include<stdio.h> main() { int a=2,b=3,p; p=f(a,b); printf("%d",p); } int f(a,b) { int c; if(a>b)c=1; else if(a==b)c=0; else c=-1; return(c) ; }A.-1B.0C.1D.2

考题 下列程序的输出结果是includeint min(int a,int b){if(a 下列程序的输出结果是 #include<iostream.h> int min(int a,int b) { if(a<b)return a; else return b; return 0; } void main() { cout<<min(1,min(2,3))<<end1; }A.0B.1C.2D.3

考题 下列函数的运行结果是includeint f(int a,int b){ int c;if(a>b)c=1; else if(a==b 下列函数的运行结果是 #include<iostream.h> int f(int a,int b) { int c; if(a>b)c=1; else if(a==b)C=0; else c=-1; return(c);} void main() { int i=2,j=3; int p=f(i,j); cout<<p;}A.-1B.1C.2D.编译出错,无法运行

考题 下面程序的运行结果是include int fun ( int a[ ],int n){int result=1;for(int 下面程序的运行结果是 #include < iostream.h > int fun ( int a[ ],int n) { int result=1; for(int i=1;i<n;i++) result=result*a[i]; return result; } void main( ) { int a[3]={3,4,5}; cout << fun(a,A.12B.15C.20D.60