Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

I'm trying to run this code on java but it show this: the code DalmutiCard.java public class DalmutiCard { private String cardName; private int cardRank;

I'm trying to run this code on java but it show this:

the code

DalmutiCard.java

public class DalmutiCard { private String cardName; private int cardRank; public DalmutiCard(int cardRank) { setCard(cardRank); } public String getCardName() { return cardName; }

public int getCardRank() { return cardRank; } public void setCard(int cardRank) { if(cardRank 13) { this.cardRank = 0; this.cardName = "Unknonwn"; } else { this.cardRank = cardRank; String cardNames[] = {"", "Dalmuti", "Archbishop", "Earl Marshal", "Baroness", "Abbess", "Knight", "Seamstress", "Mason", "Cook", "Shepherdess", "Stonecutter", "Peasant", "Jester"}; this.cardName = cardNames[cardRank]; } } @Override public String toString() { return cardRank + " - " + cardName; } }

image text in transcribed

Command Prompt 09/16/2017 08:37 PM 09/16/2017 08:37 PM 07/27/2017 05:24 PM 11/26/2017 05:08 PM 10/18/2017 05:58 PM 222 PLAYERUNKNOWN'S BATTLEGROUNDS (Test Server).url 222 PLAYERUNKNOWN 'S BATTLEGROUNDS.url 222 Rocket League.url 222 Rust.url 2,283 Stremio.lnk 351,826 bytes 16 File(s) 9 Dir(s) 475,308,486, 656 bytes free C: \Users\Bassam\Desktop>cd java C: \Users\Bassam\Desktop\java>dir Volume in drive Chas no label. Volume Serial Number is 28FC-3BD5 Directory of C:\Users\Bassam\Desktop\java 01/13/2018 02:59 PM 01/13/2018 02:59 PM 01/13/2018 02:59 PM 711 DalmutiCard.java 1 File(s) 711 bytes 2 Dir(s) 475,308,486, 656 bytes free C: \Users\Bassam\Desktop java javac DalmutiCard.java :\Users\Bassam\Desktop\java java DalmutiCard Error: Main method not found in class DalmutiCard, please define the main method as public static void main (Stringl] args) r a JavaFX application class must extend javafx.application.Application :\Users\Bassam\ Desktop\java>

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions