#include <stdio.h> int main(void) { printf("%d %o %x %X\n", 100, 100, 100, 100); printf("%e %E\n", 100.231, 100.231); return 0; }