当前位置:网站首页>Enter the width!
Enter the width!
2022-07-04 15:04:00 【Zaltana】
Input 123456789 To the variable a1,a2,a3, Width is 3, Then the output a1,a2,a3, The blank space to separate .
Format
Input format :123456789
Output format : The output is an integer , The blank space to separate .
Examples
Input :123456789
Output :123 456 789
#include<bits/stdc++.h>
using namespace std;
int main( )
{
int a, b, c;
scanf("%3d%3d%3d", &a, &b,&c);
printf("%d %d %d" ,a,b,c);
return 0;
}
边栏推荐
- flutter 报错 No MediaQuery widget ancestor found.
- 深度学习 网络正则化
- Luo Gu - some interesting questions 2
- Openresty redirection
- Comment configurer un accord
- 暑期复习,一定要避免踩这些坑!
- 宽度与对齐
- Programmer turns direction
- Five minutes of machine learning every day: why do we need to normalize the characteristics of numerical types?
- LVGL 8.2 Draw label with gradient color
猜你喜欢
深度学习 神经网络的优化方法
LeetCode 1200 最小绝对差[排序] HERODING的LeetCode之路
金额计算用 BigDecimal 就万无一失了?看看这五个坑吧~~
Memory management summary
leecode学习笔记-约瑟夫问题
LVGL 8.2 Line wrap, recoloring and scrolling
SAIC Maxus officially released its new brand "mifa", and its flagship product mifa 9 was officially unveiled!
智能客服赛道:网易七鱼、微洱科技打法迥异
[differential privacy and data adaptability] differential privacy code implementation series (XIV)
自动控制原理快速入门+理解
随机推荐
Halo effect - who says that those with light on their heads are heroes
浮点数如何与0进行比较?
openresty 限流
关于FPGA底层资源的细节问题
【大连理工大学】考研初试复试资料分享
现代控制理论入门+理解
How to handle exceptions in multithreading?
Go zero micro service practical series (IX. ultimate optimization of seckill performance)
Numpy notes
Redis 解决事务冲突之乐观锁和悲观锁
LVGL 8.2 keyboard
如何配和弦
Deep learning neural network case (handwritten digit recognition)
When synchronized encounters this thing, there is a big hole, pay attention!
C language programming
selenium 元素交互
《opencv学习笔记》-- 线性滤波:方框滤波、均值滤波、高斯滤波
.Net之延迟队列
Luo Gu - some interesting questions
Leecode learning notes - Joseph problem