Untitled
Anonymous
plain_text
03/06/2021 7:29 PM
308 B
18
Indexable
#include <iostream>
#include "Card.cpp"
using namespace std;
int main()
{
Card p1;
char nam[] = "Jenata";
char autho[] = "Ivan Ivanov";
Card p2(nam, autho, 2);
p1.print();
p2.print();
}
Editor is loading...