class Solution { public: int jumpFloor(int number) { if(number == 1) return 1; &...