当前位置:网站首页>Stew in disorder
Stew in disorder
2022-07-04 15:35:00 【Zaltana】
Enter a positive integer , Output its decimal form 、 Octal form 、 Hexadecimal form ( A lowercase letter )、 Unsigned decimal form , The blank space to separate .
Format
Input format : Enter integer , The blank space to separate .
Output format : Output integer , The blank space to separate .
Examples
Input : 33
Output :33 41 21 33
#include<bits/stdc++.h>
using namespace std;
int main( )
{
int n;
scanf("%d" ,&n);
printf("%d %o %x %u",n,n,n,n);
return 0;
}
边栏推荐
- 重排数组
- [book club issue 13] packaging format and coding format of audio files
- Align left and right!
- Go zero micro service practical series (IX. ultimate optimization of seckill performance)
- [book club issue 13] coding format of video files
- 从0到1建设智能灰度数据体系:以vivo游戏中心为例
- Implementation of web chat room
- Unity script API - time class
- go-zero微服务实战系列(九、极致优化秒杀性能)
- Deep learning neural network case (handwritten digit recognition)
猜你喜欢
力扣刷题01(反转链表+滑动窗口+LRU缓存机制)
Redis publier et s'abonner
Optimization method of deep learning neural network
音视频技术开发周刊 | 252
How did the beyond concert 31 years ago get super clean and repaired?
在芯片高度集成的今天,绝大多数都是CMOS器件
Summer Review, we must avoid stepping on these holes!
干货 | fMRI标准报告指南新鲜出炉啦,快来涨知识吧
从0到1建设智能灰度数据体系:以vivo游戏中心为例
都在说DevOps,你真正了解它吗?
随机推荐
What is the future of the booming intelligent Internet of things (aiot) in recent years?
对话龙智高级咨询顾问、Atlassian认证专家叶燕秀:Atlassian产品进入后Server时代,中国用户应当何去何从?
一篇文章学会GO语言中的变量
Redis 發布和訂閱
Go deep into the details of deconstruction and assignment of several data types in JS
Quelles sont les perspectives de l'Internet intelligent des objets (aiot) qui a explosé ces dernières années?
进制形式
When synchronized encounters this thing, there is a big hole, pay attention!
Common API day03 of unity script
进制乱炖
PXE网络
Nine CIO trends and priorities in 2022
Logstash~Logstash配置(logstash.yml)详解
数据库函数的用法「建议收藏」
【读书会第十三期】视频文件的编码格式
Width accuracy
Usage of database functions "recommended collection"
科普达人丨一文看懂阿里云的秘密武器“神龙架构”
LNX efficient search engine, fastdeploy reasoning deployment toolbox, AI frontier paper | showmeai information daily # 07.04
从0到1建设智能灰度数据体系:以vivo游戏中心为例