#include <iostream>
using namespace std;

class Book {
public:
    string title;
    int price;


    Book(string t,int p){
    title = t;
    price = p;
    }

    void printlnfo() {
        cout << "title: " << title << ", price: " << price << endl;
    }
};

int main() {
    Book b("대황유",30000);
    b.printlnfo();
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: