ComeçarComece de graça

Whole or decimal

You've seen several different primitive types for numerical values.

Can you choose the correct one?

Este exercício faz parte do curso

Introduction to Java

Ver curso

Instruções do exercício

  • Choose the correct primitive type for the dressPrice variable.
  • Choose the correct primitive type for the shoePrice variable.

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

class WholeOrDecimal {
    public static void main(String[] args) {
    
        byte dressSize = 8;
        float shoeSize = 11.5F;
        
        // Choose the correct primitive type
        ____ dressPrice = 55;
        ____ shoePrice = 49.9;
    }
}
Editar e executar o código