Home > Common Problem > body text

The role of the iomanip header file

(*-*)浩
Release: 2019-06-25 10:05:40
Original
12953 people have browsed it

The following header file is often seen in c programs

#include <iomanip>
Copy after login

io represents input and output, and manip is the abbreviation of manipulator (On c, it is only valid by inputting the abbreviation. )

The role of the iomanip header file

##Function (Recommended learning: C language video tutorial)

Mainly for some manipulation operators such as cin and cout, such as setfill, setw, setbase, setprecision, etc. It is an I/O flow control header file, just like the formatted output in C.

The following are some common control functions:

dec sets the base to 10, which is equivalent to "%d"

hex sets the base is 16, which is equivalent to "%X"

oct. Set the base to 8, which is equivalent to "%o"

setfill( 'c' ). Set the fill character to c

setprecision( n ) Assume that the displayed valid digits are n digits

setw( n ) and the field width is n characters

The meaning of this control character is to ensure that the output width is n. For example:

cout << setw( 3 ) << 1 << setw( 3 ) << 10 << setw( 3 ) << 100 << endl;
Copy after login
The output result is:

_ _1_10100
Copy after login
(the default is right alignment). When the output length is greater than 3 (<<1000), setw(3) does not work.

The above is the detailed content of The role of the iomanip header file. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!