Delete template files

Co-Authored-By: os222
This commit is contained in:
Gleb Koval 2024-11-18 16:37:35 +00:00
parent c0326e52d1
commit 416d4caaed
Signed by: cyclane
GPG Key ID: 15E168A8B332382C
3 changed files with 0 additions and 30 deletions

View File

@ -1,26 +0,0 @@
package ic.doc;
import com.weather.Day;
import com.weather.Forecast;
import com.weather.Forecaster;
import com.weather.Region;
public class Example {
public static void main(String[] args) {
// This is just an example of using the 3rd party API - delete this class before submission.
Forecaster forecaster = new Forecaster();
Forecast londonForecast = forecaster.forecastFor(Region.LONDON, Day.MONDAY);
System.out.println("London outlook: " + londonForecast.summary());
System.out.println("London temperature: " + londonForecast.temperature());
Forecast edinburghForecast = forecaster.forecastFor(Region.EDINBURGH, Day.MONDAY);
System.out.println("Edinburgh outlook: " + edinburghForecast.summary());
System.out.println("Edinburgh temperature: " + edinburghForecast.temperature());
}
}

View File

@ -1,2 +0,0 @@
Put your implementation code in this directory.
Delete this file before submission.

View File

@ -1,2 +0,0 @@
Put your test code in this directory.
Delete this file before submission.