nforce17
Administrator
Dołączył: 05 Lis 2006
Posty: 388
Przeczytał: 0 tematów
Pomógł: 4 razy Ostrzeżeń: 0/5
|
Wysłany: Śro 20:38, 31 Sie 2011 Temat postu: Odwrocenie lancucha |
|
|
Czytanie lancucha od konca
Kod: | #include <iostream>
#include <string>
using namespace std;
int main()
{
string tekst;
tekst = "OLLEH";
int i;
cout << "Tekst " << tekst << " czytany od tylu brzmi: \n";
for (i = tekst.length()-1; i >= 0; i--)
{
cout << tekst[i];
}
return 0;
} |
Post został pochwalony 0 razy
|
|