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.

Array auf dem Kopf Stellen mit Typumwandlung??

Empfohlene Antworten

Veröffentlicht

Servus!

Ich habe einen wert W vom typ Double:

double W = 297.98
Diesen wandle ich in einen String um:
String sTemp = Double.toString(W);
die char aus diesen String packe ich in ein Array:
char cTemp[] = sTemp.toCharArray();

mein Problem:

ich möchte cTemp[] jetzt auf den Kopf stellen (in cTempKopf[])

danach die Werte aus cTempKopf[] (typ char) in int umwandeln

und in iTempKopf[] (typ int) packen

wie mache ich das am besten?

ich möchte cTemp[] jetzt auf den Kopf stellen (in cTempKopf[])

was moechtest du ?

gruss

cTemp[0] = 20

cTemp[1] = 30

cTemp[2] = 50

zu

cTempKopf[0] = 50

cTempKopf[1] = 30

cTempKopf[2] = 20


for (int i=0; i < cTemp.length / 2; i++)

{

  char temp = cTemp[i];

  cTemp[i] = cTemp[cTemp.length - i - 1];

  cTemp[cTemp.length - i - 1] = temp;

}

Moin,

die reverse() Methode von StringBuffer könnte auch ganz interessant sein.

Gruß, Peter

Archiv

Dieses Thema wurde archiviert und kann nicht mehr beantwortet werden.

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.