学会了c语言自然会写啦
#include "stdio.h"
int main() { int a, b, c; float d; double e; scanf("%d%o%x%f%lf", &a, &b, &c, &d, &e); printf("%d %d %d %.2f %.2lf", a, b, c, d, e); return 0;}