柠檬试题库
search
首页
计算机
公务员
驾照
关于
share
两根同样长的蜡烛,点完粗蜡烛要3小时,点完细蜡烛要1小时。同时点燃两根蜡烛,一段时间后,同时熄灭,发现粗蜡烛的长度是细蜡烛的3倍。问两根蜡烛燃烧了多长时间? ( )
A.30分钟
B.35分钟
C.40分钟
D.45分钟
热度🔥1
参考答案:D
解析:
这个题目在斜月沉沉的教案中讲过,是原题。蜡烛长3,粗蜡烛速度1,细蜡烛3,X小时达到题干的情况,即(3-X)=3×(3-3X),X=3/4小时=45分钟,选D。
复制题目向AI提问
content_copy
content_copy
扫码免费计算机二级刷题
2025年计算机等级考试题库
推荐
有以下程序 #include #define S(x) x/x main() { int k=5, j=2; printf("%d,%d\n", S(k+j), S(j+k)); } 程序的运行结果是
下列磁盘调度算法中,通常称为电梯算法的是
请分析以下程序。 int main() { pid_t pid; pid = fork(); if(pid==0) printf("I am the child process, my process ID is%d\n",getpid()); else printf("I am the parent process, my process ID is%d\n",getpid());} 那么,该程序正确运行后的结果是
下列叙述中正确的是( )。