#include <stdio.h> int main() { int num;//十进制数 int i=0;//用来循环 scanf("%d",&num);//输入十进制数 char a[5];//十六进制数 do{ switch(num%16){ case 15:a[i]='F';break