Answer:
// here is code in java.
import java.util.*;
// class definition
class Solution
{
// main method of the class
public static void main (String[] args) throws java.lang.Exception
{
try{
// scanner object to read innput
Scanner s=new Scanner(System.in);
// variables
long min,years,days;
long temp;
System.out.print("Please enter minutes:");
// read minutes
min=s.nextLong();
// make a copy
temp=min;
// calculate days
days=min/1440;
// calculate years
years=days/365;
// calculate remaining days after years
days=days%365;
// print output
System.out.println(temp+" minutes is equal to "+years+" years and "+days+" days");
}catch(Exception ex){
return;}
}
}
Explanation:
Read the number of minutes from user and assign it to variable "minutes" of long long int type.Make a copy of input minutes.Then calculate total days by dividing the input minutes with 1440, because there is 1440 minutes in a day.Then find the year by dividing days with 365.Then find the remaining days and print the output.
Output:
please enter the minutes:1000000000
1000000000 minutes is equal to 1902 years and 214 days.
Answer: Yup!
If you'd rather take a picture with your phone, just back transfer the photos into your computer if necessary.
Answer:
- Role-playing, action, educational, and simulations are examples of computer and video game subcategories.
- Windows and Apple offer SDKs , which contain tools for creating 2-D and 3-D drawings, game-playing interfaces, and multiplayer control.
- Wii or Kinect sports games may provide therapeutic recreation to help stroke and injury victims recover faster.
- Head-mounted displays often use organic light emitting diode, or OLED, technology.
- Smartphones often come with scaled-down versions of games such as Angry Birds to introduce games to users.
Explanation:
SDK stands for Software Developement Kit. Windows and Apple are software companies which offer software for their specific devices or operating systems.
OLED stands for Organic Light-Emitting Diode.
Wii or Kinect sports games may provide therapeutic recreation because they offer gross motor interfaces providing physical challenge for players.
Answer: the body shape is skinny
Answer:
Usability
Explanation:
The degree to which a program meets the needs of a user, including but not limited to learnability, reliability, and ease of use