1. 학습
  2. /
  3. 강의
  4. /
  5. Introduction to Java

Connected

연습 문제

Creating a variable

Variables are like labeled boxes where you store data in your programs. Every variable in Java needs a name and a type that tells Java what kind of data it will hold. Let's create your first variables!

지침

100 XP
  • Create a text variable called language that has the value of "Java".
  • Create a numerical variable called yearOfOrigin that is set to 1995.