Skip to content

Commit

Permalink
feat(2.5.1): Unit 2 Lesson 4 Coding Activity 1
Browse files Browse the repository at this point in the history
  • Loading branch information
101zh committed Sep 26, 2023
1 parent c173687 commit 33bbcbd
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
Empty file removed src/main/java/2.5.1.java
Empty file.
18 changes: 18 additions & 0 deletions src/main/java/U2_L5_Activity_One.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/* Lesson 5 Coding Activity Question 1 */

import shapes.*;

public class U2_L5_Activity_One
{
public static void main(String[] args)
{

Circle c1 = new Circle(10.1);
System.out.println(c1);
Circle c2 = new Circle(14.0);
System.out.println(c2);
Circle c3 = new Circle(20.5);
System.out.println(c3);

}
}

0 comments on commit 33bbcbd

Please sign in to comment.