Napisz program w c ++, który ze zdania podanego przez użytkownika usunie wszystkie spacje. Program ma korzystac z getline. Dziękuję
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include <iostream>
#include <string>
using namespace std;
int main(int argc, char *argv[])
{
string tekst;
cout << "Podaj tekst: ";
getline(cin, tekst);
string *tablica = new string[tekst.length()];
for (int x = 0; x < tekst.length(); x++)
{
tablica[x] = tekst[x];
if (tablica[x] != " ")
{
cout << tablica[x];
}
}
delete [] tablica;
return 0;
}
W załączniku.
Sądzę, że pomogłem i liczę na Naj...