Logo

dev-resources.site

for different kinds of informations.

setw() & setfill() | C++ boshlang'ich

Published at
3/12/2024
Categories
beginners
uzbek
dasturlash
cpp
Author
wahidustoz
Categories
4 categories in total
beginners
open
uzbek
open
dasturlash
open
cpp
open
Author
10 person written this
wahidustoz
open
setw() & setfill() | C++ boshlang'ich

setw(n)

  • Ushbu funksiya chop etish uchun ma'lum uzunlik ya'ni ustunlar so'raydi. Masalan: setw(5) - chop etish uchun 5 ta ustun so'raydi.
  • agar chop etilayotgan beliglar uzunligi so'ralgan ustunlar sonidan ko'p bo'lsa, hamma belgilar muammosiz chop etiladi. Masalan: cout << setw(1) << "Salom"; kodi garchi bitta ustun so'ralgan bo'lsa ham Salom so'zini hammasini chop etadi.
cout << setw(10) << 123 << endl; 
Enter fullscreen mode Exit fullscreen mode

setfill('')

  • Ushbu fuknsiya setw() funksiya bilan doimo birgalikda ishlatiladi.
  • setfill('') funksiyasi setw ishlatilganda hosil bo'lgan bo'sh kataklarni berilgan belgi bilan to'ldiradi. *Masalan: cout << setw(5) << setfill('.') << 7 << endl; kodi ....7 chop etadi.`

Featured ones: