Logo

dev-resources.site

for different kinds of informations.

java 3 task

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 3 task

class Waterbottle
{
public void drink(){

        System.out.println("Drinking quarter in waterbottle");
Enter fullscreen mode Exit fullscreen mode

}
}

class Boys
{
public static void main(String[] args)
{
Waterbottle wb = new Waterbottle();
wb.drink();
}
}

Featured ones: