Last active
February 3, 2023 09:49
-
-
Save udacityandroid/90017426439d37728a29 to your computer and use it in GitHub Desktop.
Android Development for Beginners : Define a Method
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private String createCalendarEventReminder(String eventName, String location, int minutesAway) { | |
String reminder = "You have an upcoming event in " + minutesAway + " minutes."; | |
reminder = reminder + " It is " + eventName + " held at " + location + "."; | |
return reminder; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private int deductPoints(int pointsUsed) { | |
// Everyone starts with 100 points | |
int numberOfPoints = 100 - pointsUsed; | |
return numberOfPoints; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private String findTotalTripLength(int distanceOfFirstTrip, int distanceOfSecondTrip, int distanceOfThirdTrip) { | |
// Assume we need 2 miles to go to our friend's home (where the trip will start). | |
int totalLength = 2; | |
// Then start adding in the trip length. | |
totalLength = totalLength + distanceOfFirstTrip + distanceOfSecondTrip + distanceOfThirdTrip; | |
// Form a string to display the total trip length. | |
String message = "The total trip will be: " + totalLength + " miles."; | |
return message; | |
} |
done
done
Done
Done
done
Make sure whene you copy-past to remove space at the end of words that you copy.
event we do correct , said not correct anyway I passed examin :)
who is doing in 2020?
during the pandemic
well, this course is going great.
[email protected]
Todo bien gracias
Realizando cursos durante la pandemia
Done
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thank you so much