原题链接
思路:考察%#o %#X 的用法
#include <stdio.h>
int main()
{
printf("%#o %#X\n", 1234, 1234);
return 0;
}
【5】牛客网BC7
阅读 19
2022-01-22
原题链接
思路:考察%#o %#X 的用法
#include <stdio.h>
int main()
{
printf("%#o %#X\n", 1234, 1234);
return 0;
}
相关推荐
精彩评论(0)