20
a year ago#include <iostream>
#include <cstring>
#include <iomanip>
using namespace std;
struct Pacient {
char fullName[100];
bool insurance;
int checkups;
};18
a year ago#include <iostream>
#include <cstring>
#include <iomanip>
using namespace std;
struct SkiLift {
char name[15];
int max;
bool func;
};22
a year ago#include <iostream>
#include <cstring>
#include <iomanip>
using namespace std;
struct Proizvod {
char code[20];
int price;
int stock;
};21
a year ago#include <iostream>
#include <cstring>
#include <iomanip>
using namespace std;
struct Tanc {
char name[15];
char origin[15];
};
struct Tancer {16
a year ago#include <iostream>
#include <cstring>
#include <iomanip>
using namespace std;
#define NEDELI 4
#define DENOVI 5
struct RabotnaNedela {
int rabotniChasovi[5];
int nedela;15
a year ago#include <iostream>
#include <cstring>
#include <iomanip>
using namespace std;
#define NEDELI 4
#define DENOVI 5
struct RabotnaNedela {
int rabotniChasovi[5];
int nedela;19
a year ago#include <iostream>
#include <cstring>
#include <iomanip>
using namespace std;
class IceCream {
char *name;
char sostav[100];
float price;
int sale;
public:17
a year ago#include <iostream>
#include <cstring>
#include <iomanip>
using namespace std;
enum osE{DEFAULT=-1,LINUX,UNIX,WINDOWS};
class OperativenSistem {
char *name;
float version;
osE type;
float size_gb;13
a year ago#include <iostream>
#include <cstring>
#include <iomanip>
using namespace std;
class Zichara {
char *location;
int price;
public:
Zichara(const char *_location = "", int _price = 0) {5
a year ago#include <iostream>
#include <cstring>
#include <iomanip>
using namespace std;
class Gitara {
char serial[25];
float price;
int year;
char type[40];4
a year ago#include <iostream>
#include <cstring>
#include <iomanip>
using namespace std;
class Patnik{
private:
char name[100];
int wagonClass; //1 or 214
a year ago#include <iostream>
#include <cstring>
#include <iomanip>
using namespace std;
enum Extension{DEFAULT = -1,pdf,txt,exe};
class File {
char *name;12
a year ago#include <iostream>
#include <cstring>
#include <iomanip>
using namespace std;
class Pica {
char name[15];
int price;
char *ingredients;
int percentOff;11
a year ago#include <iostream>
#include <cstring>
#include <iomanip>
using namespace std;
class Ucesnik {
char *name;
bool gender;
int age;
public:3
a year ago#include <iostream>
#include <cstring>
#include <iomanip>
using namespace std;
class StockRecord {
private:
char id[12];
char company[50];
float purchasePrice;10
a year ago#include <iostream>
#include <cstring>
#include <iomanip>
using namespace std;
struct Igrac {
char username[15];
int level;
int points;
};9*
a year ago#include <iostream>
#include <cstring>
#include <iomanip>
using namespace std;
struct Laptop {
char brand[100];
float display;
bool touchScreen;
int price;8
a year ago#include <iostream>
#include <cstring>
#include <iomanip>
using namespace std;
struct Laptop {
char brand[100];
float display;
bool touchScreen;
int price;7
a year ago#include <iostream>
#include <cstring>
#include <iomanip>
using namespace std;
struct Vozenje {
char name[100];
int minutes;
float price;
int studentSale;2
a year ago#include <iostream>
using namespace std;
class List {
int *nums;
int numberOfElements;
public:
List() {
nums = nullptr;
numberOfElements = 0;6
a year ago#include <iostream>
#include <cstring>
using namespace std;
struct Voz {
char relacija[50];
float km;
int patnici;
};
struct ZeleznickaStanica {1
a year ago#include <iostream>
#include <cstring>
using namespace std;
enum type{DEFAULT = -1,pop,rap,rock};
class Pesna {
char *name;
int length;
type songType;