1
0
Fork 0
mirror of https://github.com/dancojocaru2000/y3s2-cciot-hw.git synced 2025-02-23 01:19:34 +02:00
y3s2-cciot-hw/Lab1
2022-03-13 16:02:09 +02:00
..
README.md Initial commit, solve Lab1 Slide11 2022-03-13 16:02:09 +02:00
slide11.cpp Initial commit, solve Lab1 Slide11 2022-03-13 16:02:09 +02:00

CCIoT Homework Lab 1

Slide 11

Problem

class Human
{
public:
    Human();
    ~Human();
    std::string name;
    int age;
};

Try this:

  1. Create 4 humans.
  2. Give them names and ages.
  3. Retrieve the data from all humans and print it to the screen.
  4. Print the data for the youngest human.
  5. Print all humans names in descending order by their names.

Solution

See slide11.cpp.