├── README.md ├── Application.java └── calculator.html /README.md: -------------------------------------------------------------------------------- 1 | # Millege-calculation 2 | The Mileage Calculator app is a user-friendly tool designed to help individuals and businesses accurately track and calculate mileage for travel, 3 | -------------------------------------------------------------------------------- /Application.java: -------------------------------------------------------------------------------- 1 | package com.example.mileage; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class Application { 8 | public static void main(String[] args) { 9 | SpringApplication.run(Application.class, args); 10 | } 11 | } 12 | 13 | -------------------------------------------------------------------------------- /calculator.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |