public class Solution { public int jumpFloor(int target) { if(target == 1) return 1; if(target == 2) return 2; int ans = 0,a = 1,b = 2; &...