对齐输出

描述

读入三个整数,按每个整数占8个字符的宽度,右对齐输出它们。

输入只有一行,包含三个整数,整数之间以一个空格分开。输出只有一行,按照格式要求依次输出三个整数,之间以一个空格分开。样例输入

123456789 0 -1

样例输出

123456789        0       -1

来源习题(2-6)

源代码:

#include<stdio.h>
int main()
{
	int a,b,c;
	scanf("%d%d%d",&a,&b,&c);
	printf("%8d %8d %8d\n",a,b,c);
	return 0;

}
时间: 2024-10-13 02:32:02

对齐输出的相关文章

【C语言】【C++】对齐输出九九乘法口诀

//对齐输出九九乘法口诀 #include <iostream> #include <iomanip.h> //using namespace std; int main() { int i,j; for(i=1;i<=9;i++) { for(j=1;j<=i;j++) { cout<<i<<"*"<<j<<"="<<setw(2)<<i*j<<

1.1编程基础之输入输出——03:对齐输出

总时间限制:  1000ms 内存限制:  65536kB 描述 读入三个整数,按每个整数占8个字符的宽度,右对齐输出它们. 输入 只有一行,包含三个整数,整数之间以一个空格分开. 输出 只有一行,按照格式要求依次输出三个整数,之间以一个空格分开. 样例输入 123456789 0 -1 样例输出 123456789 0 -1 来源 习题(2-6) 1 #include <iostream> 2 #include <cstdio> 3 4 using namespace std;

Openjudge-NOI题库-对齐输出

题目描述 Description 读入三个整数,按每个整数占8个字符的宽度,右对齐输出它们. 输入输出格式 Input/output 输入格式: 只有一行,包含三个整数,整数之间以一个空格分开. 输出格式: 只有一行,按照格式要求依次输出三个整数,之间以一个空格分开. 输入输出样例 Sample input/output 样例测试点#1 输入样例: 123456789 0 -1 输出样例: 123456789        0        -1 思路:这题简单,先统计三个数的位数,再在前面输出

编写程序输入一个5x5的矩阵,将最大元素与中心元素交换,并按行列对齐输出。

编写程序输入一个5x5的矩阵,将最大元素与中心元素交换,并按行列对齐输出. 题目描述 编写程序输入一个5x5的矩阵,将最大元素与中心元素交换,并按行列对齐输出. 输入描述 编写程序输入一个5x5的矩阵 输出描述 将最大元素与中心元素交换,并按行列对齐输出. 样例输入 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 样例输出 1 2 3 4 5 6 7 8 9 10 11 12 25 14 15 16 17 18

3、对齐输出

题目:读入三个整数,按每个整数占8个字符的宽度,右对齐输出它们,按照格式要求依次输出三个整数,之间以一个空格分开. a = int(input("第一个数:")) b = int(input("第二个数:")) c = int(input("第三个数:")) s = "%8d %8d %8d"%(a,b,c) print(s) 运行结果: 第一个数:3第二个数:45第三个数:567 3 45 567 原文地址:https://

1003:对齐输出

1003:对齐输出 时间限制: 1000 ms         内存限制: 66536 KB提交数: 112374     通过数: 34994 [题目描述] 读入三个整数,按每个整数占8个字符的宽度,右对齐输出它们,按照格式要求依次输出三个整数,之间以一个空格分开. [输入] 只有一行,包含三个整数,整数之间以一个空格分开. [输出] 只有一行,按照格式要求依次输出三个整数,之间以一个空格分开. [输入样例] 123456789 0 -1 [输出样例] 123456789 0 -1 #incl

C#实战--对齐输出

using System; using System.Collections.Generic; using System.Linq; using System.Text; /* * 编一个程序,定义三个double类型的变量 * 分别从键盘上输入值给它们 * 然后用Console.WriteLine方法把它们输出成一列 * 小数点对齐,保留3位小数 */ namespace PI { class Program { static void Main(string[] args) { double

03:对齐输出

#include<iostream> #include<cstdio> #include<iomanip> using namespace std; int main() { int a,b,c; cin>>a>>b>>c; cout<<setw(8)<<a<<" "<<setw(8)<<b<<" "<<setw

以八进制 十六进制(小写) 十六进制(大写)的格式 输出8~15 并输出变量1.23456的变量地址 变量 保留两位小数和默认右对齐

1 # include <stdio.h> 2 3 int main() 4 { 5 unsigned number; 6 double item = 1.23456; 7 8 for (number = 8; number<16; number++) 9 { 10 printf("%o ", number); /* 以八进制格式输出number */ 11 printf("%x ", number); /* 以十六进制格式(小写)输出number