C C++ Java Python Processing编程在线培训 程序编写 软件开发 视频讲解
The boxer must weigh enough (weight >= 136), and must also not weigh toomuch (weight <= 147).The results of the two tests are combined with the and-operator, &&.Here is a JavaScript version of the program:
(weight >= 136),
(weight <= 147).
&&
How heavy is the boxer?
Run the program for a weight of 140.