Start time:
Mi 31 Jan 2018 09:50:53
End time:
So 06 Mai 2018 09:45:53

Assignments: 4

Task 01: Structs (Slides 5-15)
Create a struct named Atom with the following members: A string for its name A string for the element symbol An unsigned int for the atomic number Then create a struct named...
Task 02: Class essentials (Slides 16-30)
Create a class named Rational in order to represent rational numbers. The class should have two int members for the numerator and the denominator, being accessible via getters and setters....
Task 03: Unique Ownership (Slides 31-55)
Create a class named Stack that represents a LIFO data structure for positive integer values. Use a singly-linked list as internal data structure (cf. slide 44). Your class should offer the...
Task 04: File I/O (Slides 68-76)
Create a program that reads the content of the given input file as shown on the sheet (given as command line argument), extracts the first name and the last name of each student and copies the...