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

题目内容 (请给出正确答案)

有如下程序 a=100 D。 s=s+a a=a+1 Loop While a>120、 Print a 运行时输出的结果是( )。

A.100

B.t20

C.201

D.101


参考答案

更多 “ 有如下程序 a=100 D。 s=s+a a=a+1 Loop While a>120、 Print a 运行时输出的结果是( )。A.100B.t20C.201D.101 ” 相关考题
考题 有以下程序:include stdio.hmain( ){ int a=7;while(a--);print[(%d\n,a);}程序运行后的输出结果是( )。A.-1B.0C.1D.7

考题 有如下程序 a=100 Do s=s +a a=a+1 Loop While a>120 Print a 运行时输出的结果是( )。A.100B.120C.201D.101

考题 以下程序运行后,输出结果是______。includess(char*s){char *p=s; while(*.p)p++; retu 以下程序运行后,输出结果是______。#include<stdio.h>ss (char *s){ char *p=s; while(*.p)p++; return(p-s);}main(){ char *a="abded"; int i; i=ss((A); print ("%d\n",i);}A.8B.7C.6D.5

考题 有如下程序: a = 100 Do s=s+a a=a+1 Loop While a > 120 Print a 运行时输出的结果是( )。A.100B.120C.201D.101

考题 有如下程序 a=100 Do s=s +a a=a +l Loop While a>120 Print a 运行时输出的结果是( )。A.100B.120C.201D.101

考题 有以下程序: #include stdio.h main( ) { int a=7; while(a--); print[("%d\n",a); } 程序运行后的输出结果是( )。A.-lB.0C.1D.7

考题 有如下程序: a = 100 Do While a > 120 s=s+a a=a+1 Loop Print a 运行时输出的结果是( )。A.100B.120C.201D.101

考题 程序运行时,若输入66,则输出结果是: i=eval(input()) if(i%3==0 and i%11==0): print("yes") else: print("no")

考题 如下程序的输出结果是 if []: print(2) else: print(3)A.2B.3C.23D.32