https://github.com/dbc2201/powerofanumberrecursive
https://github.com/dbc2201/powerofanumberrecursive
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/dbc2201/powerofanumberrecursive
- Owner: dbc2201
- Created: 2022-06-27T20:43:44.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-27T20:43:47.000Z (about 4 years ago)
- Last Synced: 2025-02-12T08:39:36.965Z (over 1 year ago)
- Language: Java
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Power of a Number (Recursive)
## Java Programming Course
---
**Course 1**: Problem-Solving and Computational Thinking using Java
**Sprint 7**: Implementing Recursion
---
Problem Statement
---
Write a program in Java that takes a number as the input and prints the power of that number recursively.
---
Task
---
1. Open the [source code file](src/main/java/io/github/dbc/) and complete the code.
2. Open the [test case file](src/test/java/io/github/dbc/) and run the test cases to
check your code.
---
Fun Resource
---