【单选题】若下列程序执行后t的值为4,则执行时输入a、b的值的范围是( ) #include int main() { int a,b,s=1,t=1; scanf("%d,%d",&a,&b); if (a>0) s+=1; if (a>b) t+=s; else if (a==b) t=5; else t=2*s; printf("s=%d,t=%d",s,t); return 0; }
【简答题】若下列程序执行后 t 的值为 4 ,则执行时输入 a,b 的值范围是 using namespace std; int main( ) { int a, b, s=1, t=1; cin>>a>>b; if (a>0) s+=1; if (a>b) t+=s; else if(a==b) t=5; else t = 2*s; cout< }