Pls someone help me with the solution of this code | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

Pls someone help me with the solution of this code

public class Program { public static void main(String[] args) { //fix the variable types double name = "Toyota"; int engine = 4.7; String year = 2019; System.out.println("Name: " + name); System.out.println("Engine: " + engine); System.out.println("Year: " + year); } }

19th Apr 2022, 8:26 AM
HAMZA AHMAD INUWA
HAMZA AHMAD INUWA - avatar
2 Answers
+ 2
HAMZA AHMAD INUWA It would be better if you reviewed the lessons prior to this challenge, because this is the absolute basics which needs to be understood. Hint** Is "Toyota" a double or a string? Your variable needs to have the correct type assigned
19th Apr 2022, 8:50 AM
Rik Wittkopp
Rik Wittkopp - avatar
+ 2
Oh. You need to change to correct data type , currently it is wrong.. Just find and modify hints: "Toyota" is a string, but what is declared.. 4.7 is which type? 2019 is a string? try now...
19th Apr 2022, 8:48 AM
Jayakrishna 🇮🇳