25 lines
747 B
C++
25 lines
747 B
C++
#include "Sortiment.h"
|
|
#include "Ware.h"
|
|
#include <iostream>
|
|
|
|
int main() {
|
|
|
|
Sortiment sortiment;
|
|
|
|
sortiment.addWare(new Ware("a", 1, 13.5, 10, 20));
|
|
sortiment.addWare(new Ware("b", 4, 14.6, 15, 20));
|
|
sortiment.addWare(new Ware("k", 5, 2.1, 13, 10));
|
|
sortiment.addWare(new Ware("n", 6, 6.5, 10, 20));
|
|
sortiment.addWare(new Ware("h", 7, 22.6, 15, 20));
|
|
sortiment.addWare(new Ware("y", 5, 15.1, 13, 10));
|
|
sortiment.addWare(new Ware("n", 8, 13.5, 10, 20));
|
|
sortiment.addWare(new Ware("o", 9, 13.6, 15, 20));
|
|
sortiment.addWare(new Ware("aa", 2, 13.1, 13, 10));
|
|
sortiment.addWare(new Ware("ware1", 5, 13.1, 13, 10));
|
|
|
|
sortiment.sort(3);
|
|
|
|
for (int i = 0; i < 10; i++) {
|
|
std::cout << *(sortiment.waren[i]) << std::endl;
|
|
}
|
|
} |