Napisz kod C++ dla programu, ktory najpierw zapyta uzytkownika o ulubiony kolor, a jesli kolorem podanym przez uzytkownika jest niebieski, wtedy program wyswietli informacje:,Niebieski to kolor
nieba".


Odpowiedź :

#include <iostream>

#include <string>

int main() {

std::string kolor;

std::cout << "Podaj swój ulubiony kolor: ";

std::cin >> kolor;

if (kolor == "niebieski" || kolor == "Niebieski") {

 std::cout << "Niebieski to kolor nieba\n";

}

return 0;

}

Odpowiedź:

#include <iostream>

#include <string>

using namespace std;

int main() {

 string kolor;

cout<<"Podaj swój ulubiony kolor: ";

 cin>>kolor;

 if (kolor=="niebieski"){

   cout<<"Niebieski to kolor nieba";

 }

}

Zobacz obrazek Animaldk