首 页
大学试题
CMS专题
工学
经济学
专升本
法学
教育学
历史学
更多分类
搜索
题库考试答案搜索网 > 题目详情
当前位置:
首页
>
下列语句片段: int result; int a=17,b=6; result=(a%b>4) ? a%b:a/b; System.out.println(result);
>
题目详情
问题题干
答案解析
相关问题
热门问题
最新问题
问题详情
下列语句片段: int result; int a=17,b=6; result=(a%b>4) ? a%b:a/b; System.out.println(result);
B、1
C、2
D、5
时间:2022-01-03 20:21
关键词:
答案解析
D
相关问题
看以下程序: boolean a=false; boolean b=true; boolean c=(a&&b)&&(!b); int result=c= =false?1:2; 这段程序执行完后,c与result的值是( )
设int a=04,b;则执行b=a>>1;语句后,b的结果是( ).
下列程序的运行结果是( )。#include void fun(int a, int b){ int k; k=a; a=b; b=k;} main() { int a=3, b=6, x=&a, y=&b;fun(x,y); printf("%d %d ", a, b);}
1)#include 2)using namespace std; 3)int main() 4){ 5)int a,b,result; 6)couta>>b; 8)result=3*a-2*b+1; 9)cout
1)#include 2)using namespace std; 3)int main() 4){ 5)int a,b,result; 6)couta>>b; 8)result=3*a-2*b+1; 9)cout
最新问题
1)#include 2)using namespace std; 3)int main() 4){ 5)int a,b,result; 6)couta>>b; 8)result=3*a-2*b+1; 9)cout
下面是类MyClass的定义,对定义中各语句描述正确的是( )。 class MyClass { private: int x,y, z; public: void MyClass(int A) { x=a; } //① int f(int a, int B) //② { x=a; y=b; } int f(int a,
有以下程序 int add(int a,int b){return(a+b);} main() {int k,(*f)(),a=5,b=10; f=add; } 则以下函数调用语句错误的是
以下程序输出结果是( ): #include<iostream> using namespace std; void add(int X,int y,int *z) { *z=y+x; } int main() { int a,b,c; add(8,4,&a); add(6,a,&b); add(a,b,&c); cout<<a<<","<<b<<","<<c<<end1; return 0;
整型变量a、b定义如下,表达式抖++a==b的值是______。 int a=3; int b=4;
执行完下列语句int a,b,c=&a;int*&p=c;p=&b;后c指向
下面的语句片段中,变量result结果为( )。 public class Test { public static void main (String args[ ]) { int sum=0; int r=2; iht result=(sum==1?sum:r); System. out. println (result); } }
下列程序段: int result; int a=17,b=6; result=(a%b>4)?a%b:a/bSystem.out.println(result); 的结果为 ( )
下列语句片段: int result; int a=17,b=6; result=(a%b>4) ? a%b:a/b; System.out.println(result);
有如下类定义: class Test { int x_,y_; public: Test ():a_(0) ,b_(0) {} Test(int a,int b=0) :a_(a),b_(b){} }; 若执行语句 Test x(2) ,y[3],*z[4]; 则Test类的构造函数被调用的次数是( )。
别人在看