setw() & setfill() | C++ boshlang'ich
Wahid Abduhakimov
Posted on March 12, 2024
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 hamSalom
so'zini hammasini chop etadi.
cout << setw(10) << 123 << endl;
setfill('')
- Ushbu fuknsiya
setw()
funksiya bilan doimo birgalikda ishlatiladi. -
setfill('')
funksiyasisetw
ishlatilganda hosil bo'lgan bo'sh kataklarni berilgan belgi bilan to'ldiradi. *Masalan:cout << setw(5) << setfill('.') << 7 << endl;
kodi....7
chop etadi.`
💖 💪 🙅 🚩
Wahid Abduhakimov
Posted on March 12, 2024
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.