微信扫一扫
原题链接
思路:考察%#o %#X 的用法
#include <stdio.h> int main() { printf("%#o %#X\n", 1234, 1234); return 0; }
相关推荐