0
How do I beat 2.2 Vehicle Passport in Java? It's been really hard and I can't figure it out.
I need help finishing this level. Can someone help
23 Answers
- 1
Show us your code so we can see your attempt.
If we have no code, we can't help you.
+ 6
In case you're not sure on how to show your code:
Open it, then highlight all of it, copy.
Leave the lesson (save if you want).
Go to "create" tab or code... either way. Hit the + button and choose java.
Paste your code. Save it.
Return to here. Edit your post and attach the code.
Someone can help you pretty quickly.
+ 2
dabomb la I would recommend resetting the code. You only need to fix the variable types using either String, int or double.
+ 1
What is your attempt so far?
+ 1
That's okay. Even if it wrong, just post your attempt so you can be guided to the correct answer.
+ 1
dabomb la You have to fix the class and the variable types.
What is a String? What is Double what is Int?
+ 1
No worries I started programming when I was 10. Go back to lesson 2.1 and learn about variables.
+ 1
public class Program
{
public static void main(String[] args) {
//fix the variable types
String name = "Toyota";
Double engine = 4.7;
int year = 2019;
System.out.println("Name: " + name);
System.out.println("Engine: " + engine);
System.out.println("Year: " + year);
}
}
0
I haven't learned much
0
But I've been trying
0
And all I get is "no output" and "no input"
0
Ok
0
Heres my code. It fails each time
System.out.println("Name: ""Toyota" + name)
System.out.println("Engine: ""4.7" + engine)
System.out.println("Year: ""2019" + year)
}
}
System.out.println(Name: ""Toyota" + name);
0
I'm waiting 😭😭😭😭😭
0
Sorry
0
No problem I was just starting to think y'all werent gonna answer
0
I don't know Java but I guess I'll learn today.
I have solved it but I can't just give you the answer.
Please copy and paste your entire code.
0
Correct code:
System.out.println(“Name: “ + “Toyota” + name);
System.out.println(“Engine: “ + “4.7” + engine);
System.out.println(“Year: “ + “2019” + year
}
}
0
AJ 🇺🇦#PeaceForUkraine🇺🇦 that is not all of the code. Also you didn't close the last println();
0
Uh I'm 14 and very confused.. also I am just now starting to learn to program