- int s,t,ans;
- s = 2, t = 10;
- ans = 0;
- while (s != t){
- if (t % 2 == 0 && t / 2 >= s)
- t /= 2;
- else
- t -= 1;
- ans += 1;
- }
- cout << ans;
A. 2
B. 3
C. 4
D. 5
- int s,t,ans;
- s = 2, t = 10;
- ans = 0;
- while (s != t){
- if (t % 2 == 0 && t / 2 >= s)
- t /= 2;
- else
- t -= 1;
- ans += 1;
- }
- cout << ans;
Scratch3.0 全国青少年软件编程等级考试 Python Scratch图形化一级 Scratch图形化四级 Scratch图形化三级 Scratch图形化二级 电子学会