BaşlayınÜcretsiz Başlayın

Upper or lower

Text formatting is everywhere - from standardizing user input to creating consistent output. Strings have powerful built-in methods that can instantly transform text. Let's explore how Java makes text manipulation effortless!

Bu egzersiz

Introduction to Java

kursunun bir parçasıdır
Kursu Görüntüle

Egzersiz talimatları

  • Output the message String in uppercase letters.
  • Output the message String in lowercase letters.

Uygulamalı interaktif egzersiz

Bu örnek kodu tamamlayarak bu egzersizi bitirin.

class ShoutItOut {
    public static void main(String[] args) {
        String message = "It's a good day to have a good day!";
        
        // Print the message in uppercase
        System.out.println(message.____);
        
        // Print the message in lowercase
        System.out.println(____);
    }
}
Kodu Düzenle ve Çalıştır