Zum Inhalt springen
View in the app

A better way to browse. Learn more.

Fachinformatiker.de

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Empfohlene Antworten

Veröffentlicht

Hallo,

ich habe eine float Zahl mit x nachkomma stellen z.B.

float fWert = 2.3845;

jetzt habe ich noch eine andere variable, in der die anzahl der nachkomma stehen z.B.

int iNachkomma = 1

als ergebnis soll dann

2.3 in einer Variablen stehen.

oder wenn iNachkomma = 2 dann 2.38.

so geht es auf 2 Stellen:

CString s;

s.Format("%01.2f", fWert );

nur ich will es halt variabel.

Ist das überhaupt möglich?

Klar ist das möglich. Den Formatstring kannst du auch formatieren:


CString f;
int iNachkomma = 2;
f.Format("%%01.%df", iNachkomma);
CString s;
s.Format(f, fWert );[/CODE]

Einzige Besonderheit: Wenn hinterher ein Prozentzeichen im String stehen soll, musst du im Formatstring ein doppeltes Prozentzeichen angeben.

danke, ganau das habe ich gesucht

Erstelle ein Konto oder melde dich an, um einen Kommentar zu schreiben.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.