Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » C / C++ (ANSI-Standard) » Ausgabe von Zahlen

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 <
000
26.11.2003, 13:29 Uhr
typecast
aka loddab
(Operator)


Hi

gibt es eine Möglichkeit unter C++ mit einem ostream bei einer Zahlenausgabe eine gewisse Anzahl von Stellen für die Zahl zu reservieren?

Die Ausgabe von mehrenen Zahlen sollte dann so aussehen:

Code:
   1
  12
  123
1234


--
All parts should go together without forcing. ... By all means, do not use a hammer. (IBM maintenance manual, 1925)

Dieser Post wurde am 26.11.2003 um 13:29 Uhr von Loddab editiert.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
26.11.2003, 13:30 Uhr
typecast
aka loddab
(Operator)


Hmm hier wird es nicht richtig dargestellt. Eigentlich sollte die 123 auch rechtsbündig sein...
--
All parts should go together without forcing. ... By all means, do not use a hammer. (IBM maintenance manual, 1925)
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
002
26.11.2003, 13:59 Uhr
virtual
Sexiest Bit alive
(Operator)



C++:
#include <iostream>
#include <iomanip>

int main()
{
    int n = 0;

    for(int i=1; i<9; ++i)
    {
        n = 10*n+i;

         // Feldbreite
         std::cout.width(10);        
         //Feldausrichtung
         std::cout.setf(std::ios_base::right, std::ios_base::adjustfield);
         std::cout <<n<<std::endl;
    }
}

Die Feldausrichtung kann man sich auch schenken, weil bei zahlen immer rechtsbündig.
--
Gruß, virtual
Quote of the Month
Ich eß' nur was ein Gesicht hat (Creme 21)
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
003
26.11.2003, 14:02 Uhr
typecast
aka loddab
(Operator)



--
All parts should go together without forcing. ... By all means, do not use a hammer. (IBM maintenance manual, 1925)
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 <     [ C / C++ (ANSI-Standard) ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: