当前位置:网站首页>十六进制
十六进制
2022-07-04 13:32:00 【Zaltana】
输出202,117,70,130的十进制,八进制,十六进制数据形式,结果为0dddddd或0Xddddd。
格式
输入格式:无
输出格式:输出为整型,空格分隔。每个数的输出占- -行。
样例1
输入:无
输出: 202 0312 0XCA
117 0165 0X75
70 0106 0X46
130 0202 0X82
#include<bits/stdc++.h>
using namespace std;
int main( )
{
printf("%d %#o %#X\n" ,202,202 , 202);
printf("%d %#o %#X\n" ,117,117,117);
printf("%d %#o %#X\n" ,70,70,70);
printf("%d %#o %#X\n", 130, 130, 130);
return 0;
}边栏推荐
- ES6 modularization
- Yyds dry goods inventory # solve the real problem of famous enterprises: continuous maximum sum
- remount of the / superblock failed: Permission denied
- How to match chords
- 如何搭建一支搞垮公司的技术团队?
- Classify boost libraries by function
- Is it safe to open an account online for stock speculation? Will you be cheated.
- Luo Gu - some interesting questions 2
- [algorithm leetcode] interview question 04.03 Specific depth node linked list (Multilingual Implementation)
- Redis 发布和订阅
猜你喜欢

Query optimizer for SQL optimization

LVGL 8.2 text shadow

Helix Swarm中文包发布,Perforce进一步提升中国用户体验

10. (map data) offline terrain data processing (for cesium)

5g TV cannot become a competitive advantage, and video resources become the last weapon of China's Radio and television

Redis 發布和訂閱

LVGL 8.2 Draw label with gradient color

对话龙智高级咨询顾问、Atlassian认证专家叶燕秀:Atlassian产品进入后Server时代,中国用户应当何去何从?

深度学习 神经网络案例(手写数字识别)

《opencv学习笔记》-- 线性滤波:方框滤波、均值滤波、高斯滤波
随机推荐
Alcohol driving monitoring system based on stm32+ Huawei cloud IOT design
Kubernets Pod 存在 Finalizers 一直处于 Terminating 状态
LVGL 8.2 Draw label with gradient color
Redis 发布和订阅
SAIC Maxus officially released its new brand "mifa", and its flagship product mifa 9 was officially unveiled!
PLC模拟量输入 模拟量转换FC S_ITR (CODESYS平台)
LVLG 8.2 circular scrolling animation of a label
EventBridge 在 SaaS 企业集成领域的探索与实践
Implementation of macro instruction of first-order RC low-pass filter in signal processing (easy touch screen)
TechSmith Camtasia studio 2022.0.2 screen recording software
5G电视难成竞争优势,视频资源成中国广电最后武器
LVGL 8.2 LED
Programmer turns direction
LVGL 8.2 Menu
LeetCode 1200 最小絕對差[排序] HERODING的LeetCode之路
LVGL 8.2 Menu
leetcode:6110. The number of incremental paths in the grid graph [DFS + cache]
自动控制原理快速入门+理解
进制乱炖
Leetcode 1200 minimum absolute difference [sort] the way of leetcode in heroding