So I wasn't really sure if I should post this here since it isn't GSC coding but I'm hoping someone here can help me with this Java coding exercise for school. So here's the problem, I'm trying to make a Time Calculator where you ask the user for a certain time like 7 then ask if it's am or pm then ask them to enter an elapsed amount of time like 10 so the output will be 5:00am. I got everything to work but whenever the user enters a number like 18 as the elapsed amount instead of 10, I get 13:00 which is not what I want since it's supposed to be a 12 hour clock. So now I need to make it into a loop so I can enter any amount of elapsed time and get the correct answer and this is where I'm stuck. I don't really know where to begin with it. I'll paste my code that I have so far down below. Thanks. If you find my explanation confusing, I'll try to reword it the best I can.
package chapter5ex11;
import java.util.Scanner;
public class Chapter5Ex11
{
public static void main(String[] args)
{
//Variables
int usernum, elapsed, hour,i=0;
String AmPm;
Scanner input = new Scanner(System.in);
//Input
System.out.format("%13s %1s"," ","Enter the starting hour: ");
usernum = input.nextInt();
System.out.format("%13s %1s"," ","Enter am or pm: ");
AmPm = input.next();
System.out.format("%13s %1s"," ","Enter the number of elapsed hours: ");
elapsed = input.nextInt();
input.close();
//Output
if(elapsed>=12-usernum)
{
if("am".equals(AmPm))
{
AmPm="pm";
}
else
{
AmPm="am";
}
}
if(usernum<=12)
{
hour=usernum+elapsed;
if(hour>12)
{
i=hour-12;
System.out.format("%13s %1s\n"," ","The time "
+ "is: "+i+":00"+AmPm);
}
else
{
System.out.format("%13s %1s\n"," ","The time "
+ "is: "+hour+":00"+AmPm);
}
}
}
}