I know for a lot of you that code stuff, me not knowing this is laughable, but I really need help on this. I've stayed after for help but my teacher can't really explain it.
This is my question:
Exercise: A gallery owner would like you to design a program that will produce limited edition certificates.
Create a class diagram and pseudocode for a certificate class (artist, title, number of certificates, and a method to produce the specified number of certificates. ).
For the class client (the application program), create an IPO chart, flowchart, and pseudocode. Allow the user to repeatedly enter an artists's name, title of the piece, and the number of certicates to produce.
On each certificate include the title of the piece, the artist's name, the current certificate number, and the total number of certificates.
We aren't working with code right now. Here's an example solution:
class CheckingAccount
// Declarations
private num accountNum
private string name
private num balance
public void setAccountNum(num number)
accountNum = number
return
public void setName(string name)
this.name = name
return
public void setBalance(num bal)
balance = bal
return
public void displayValues()
output “Account number: ”, accountNum
output “Name: ”, name
output “Balance: ”, balance
return
endClass
If you can help me out with this problem, and hopefully the understanding of it, I'll pay in fg.
Assignment is due tomorrow.