The method printV(int) is undefined for the type Main error

Viewed 28
class V
{
  public void print_V(int number)
  {
    String v= "v";
    int count= number;
    System.out.print("Letter" + v.repeat(count));
  }
  public void print_V()
  {
    System.out.print("v");
  }
  public static void call_Print_V(int n)
  {
    print_V(n);
  }
 }

class Main 
{
  public static void main(String[] args) 
  {
     v call_Print_V= new v();
     call_Print_V.print_V(input);
  }
 }

Whenever I run the code, I would be left with a "The method printV(int) is undefined for the type Main" error for line 5 of the class main.

0 Answers
Related