Logo

dev-resources.site

for different kinds of informations.

java task 3

Published at
12/14/2024
Categories
payilagam
Author
yaswanth_krishna_81faee1e
Categories
1 categories in total
payilagam
open
Author
25 person written this
yaswanth_krishna_81faee1e
open
java task 3

class Washingmachine
{
public void cloth()
{
System.out.println("washing dirty clothes");
}
}

class Human
{
public static void main(String[] args)
{
Washingmachine wash = new Washingmachine();
wash.cloth();
}
}

Featured ones: