早教吧作业答案频道 -->其他-->
假设有一条绳子长3000m,每天减去一半publicclasschapter337{publicstaticvoidmain(Stringargs[]){inti=0;booleanboo=true;intlength=3000;while(boo){if(length
题目详情
假设有一条绳子长3000m,每天减去一半
public class chapter337 {
public static void main(String args[])
{
int i=0;
boolean boo=true;
int length=3000;
while(boo)
{
if(length
public class chapter337 {
public static void main(String args[])
{
int i=0;
boolean boo=true;
int length=3000;
while(boo)
{
if(length
▼优质解答
答案和解析
public static void main(String args[]) {
int i = 0;
boolean boo = true;
int length = 3000;
while (boo) {
if (length < 5) {
boo = false;
}
int len2 = length - length / 2;
length = len2;
i++;
}
System.out.print(i + "天后绳子小于5M");
}
}
多了一组括号
class chapter337 {public static void main(String args[]) {
int i = 0;
boolean boo = true;
int length = 3000;
while (boo) {
if (length < 5) {
boo = false;
}
int len2 = length - length / 2;
length = len2;
i++;
}
System.out.print(i + "天后绳子小于5M");
}
}
看了 假设有一条绳子长3000m,...的网友还看了以下:
在公式s=u+at中,当t=1时,s=11,当t=2时,s=38.求u,a的值以及t=3时s的值 2020-04-08 …
连字成词(英语)l u o e b s r u s r e t o s w a e s r t e 2020-05-14 …
用这些英文字母拼词这些英文字母打乱了顺序.一个题目一个词.第一题:r,c,t,a,e,s,r第二题 2020-05-16 …
if语句改写成switch语句,【7】请将以下语句改写成switch语句(注意:不允许出现任何形式 2020-05-16 …
猴子选大王问题 Free Pascal提示202堆栈溢出错type arr=array[1..10 2020-05-17 …
A.s(u)∧sp(v)∧p(w)B.SP(u)∧S(v)∧P(w)C.P(u)∧SP(v)∧S(w 2020-05-26 …
A.S(u)SP(v)P(w)B.SP(u)S(V)P(w)C.P(u)SP(v)S(w)D.S(u 2020-05-26 …
#includemain(){chars[]="012xyz\08s34f4w2";inti,n= 2020-07-23 …
这个程序运行减法的时候有错误.如果我从键盘输入一个负数就会出错.急#include#include# 2020-11-01 …
(c语言题)以下关于if语句和switch语句的叙述中错误的是。A.if语句和s(c语言题)以下关于 2020-12-07 …