Question: I can't get this code to run. I keep getting an unresolved compilation problem in the main. Please help! import java.util.*; import java.io.*; public class

I can't get this code to run. I keep getting an unresolvedI can't get this code to run. I keep getting an unresolved compilation problem in the "main". Please help!

import java.util.*;

import java.io.*;

public class Message {

String recipient;

String sender;

String text;

public Message(String recip, String send){

recipient = recip;

sender = send;

}

public void append(String txt){

text = txt;

}

public String toString(){

return "To: " + recipient + " From: " + sender + " : " + text + " ";

}

public static void main(String[] args){

Message one = new Message("Harry", "Hagrid");

one.append("Hi");

System.out.print(one.toString());

}

}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!