JavaRush /Java Blog /Random EN /level02.lesson01.task01 What does "Implement a method" me...

level02.lesson01.task01 What does "Implement a method" mean?

Published in the Random EN group
Good day everyone! Friends, please help me understand the problem. level02.lesson01.task01 What does it mean?Here is the condition: "Implement the method print. The method must display the passed string 4 times. Each time from a new line." I can’t understand what needs to be done because I don’t understand what “implement a method” means. In all the lectures before this assignment, nothing was said about “implementing a method.” And before these lectures, I knew nothing at all about Java. Therefore, the phrase "implement a method" means nothing at all to me. Be so kind as to explain in human language what this strange “implement a method” means . Because without understanding this, I won’t be able to figure out how to solve the whole problem and subsequently all similar problems... :( Thanks to everyone for the answers and advice. P.S. here is the task itself: package com.javarush.test.level02.lesson01. task01; / Implementation of the method Implement the print method. The method should display the passed string 4 times, each time on a new line. /
public class Solution

{ public static void main(String[] args)

{
   print("Java easy to learn!");
}
public static void print(String s)
{
    //write your code here
}
}
Comments
TO VIEW ALL COMMENTS OR TO MAKE A COMMENT,
GO TO FULL VERSION