#include"stdio.h"intfact(int num){if(num <=1){printf("1 = ");return1;}else{printf("%d x ",num);return num *fact(num-1);}}intmain(){int num =10;// printf("plz input a number you want to fact: ");// scanf("%d", &num);printf("%d\n",fact(num));}
1. 问题背景
最近在协助团队小盆友调试一个验签问题,结果还“节外生枝”了,原来不是签名过程的问题,是token的问题。 当你看到“JWT signature does not match locally computed signature. JWT validity cannot be asserted and should not…