#include<stdio.h> int main() { printf("%#o %#X", 1234, 1234);//使用修饰符“#”控制前导显示,是控制显示,不是#0或者#0X return 0; }