Write a program that displays "Ellie is clever" 5 times. Each time, on a new line.
Example output: Ellie is clever
Ellie is clever
Ellie is clever
Ellie is clever
Ellie is clever
Requirements:
The program should output text.
The text should begin with "Ellie".
The text should end in "clever".
The text should consist of 5 lines.
The displayed text must match the task conditions.
package com.codegym.task.task01.task0102;
/*
Kind words for the teacher
*/
public class Solution {
public static void main(String[] args) {
//write your code here
}
}
This website uses cookies to provide you with personalized service. By using this website, you agree to our use of cookies. If you require more details, please read our Terms and Policy.