Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
bookstore
Language:
Ada
Assembly
Bash
C#
C++ (gcc)
C++ (clang)
C++ (vc++)
C (gcc)
C (clang)
C (vc)
Client Side
Clojure
Common Lisp
D
Elixir
Erlang
F#
Fortran
Go
Haskell
Java
Javascript
Kotlin
Lua
MySql
Node.js
Ocaml
Octave
Objective-C
Oracle
Pascal
Perl
Php
PostgreSQL
Prolog
Python
Python 3
R
Rust
Ruby
Scala
Scheme
Sql Server
Swift
Tcl
Visual Basic
Layout:
Vertical
Horizontal
package bookstore; public class Bookstore { public static void main(String[] args) { } } class Shopping{ private String bookName; private int bookId; private String customerName; private int customerId; private int totalPurchasedBooks; Shopping(){ ++totalPurchasedBooks; } Shopping(String bookn,int bookid, String customern,int customerid){ bookName= bookn; bookId=bookid; customerName=customern; customerId=customerid; ++totalPurchasedBooks; } public String getBookName (){ return bookName; } public int getBookId (){ return bookId; } public String getCustomerName (){ return customerName; } public int getCustomerId (){ return customerId; } }
[
+
]
Show input
edit mode
|
history
|
discussion