I wrote this code to convert 12H time to 24H time but with an input:
07:05:45pm
I get output as:
07:05:45
Here's the code
import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;
public class Demo
{
static String timeConversion(String s)
{
// Complete this function
char a = 'a';
char l = 0, m = 0;
int l1 = 0, m1 = 0;
final int RADIX = 10;
char p = 'p';
String str = new String();
char t1 = 0;
int t2 = 0;
char arr[] = new char[10];
arr = s.toCharArray();
int a1 = Character.getNumericValue(arr[0]);
int a2 = Character.getNumericValue(arr[1]);
int t = (10*a1)+(a2);
char _1 = '1', _2 = '2';
if(arr[8]==p)
{
if((arr[0]==(_1))&&(arr[1]==(_2)))
{
char arr1[] = new char[8];
for(int i = 0; i < 8; i++)
arr1[i] = arr[i];
str=String.copyValueOf(arr1);
}
else
{
t2 = t + 12;
l1 = (t2%10);
t2/=10;
m1 = (t2%10);
m = Character.forDigit(m1, RADIX);
l = Character.forDigit(l1, RADIX);
arr[1] = l;
arr[0] = m;
char arr1[] = new char[8];
for(int i = 0; i < 8; i++)
arr1[i] = arr[i];
str=String.copyValueOf(arr1);
}
}
else
{
char arr1[] = new char[8];
for(int i = 0; i < 8; i++)
arr1[i] = arr[i];
str=String.copyValueOf(arr1);
}
return str;
}
public static void main(String[] args)
{
//Scanner in = new Scanner(System.in);
//String s = in.next();
String s = "07:05:45PM";
String result = timeConversion(s);
System.out.println(result);
}
}
As you can see I've hard coded the input becuse intellij won't allow me to pass command line arguments so I would also like to know how to pass command line argumnets in intellij.
Also, it would be really helpful if you would suggest me some good coding habits after looking at my code.
The fist thing I would check for you is in the condition
arr[8]==p
; herep='p'
from a previous line, but in the string this array index is passing'P'
which is a separate char due to capitalization.As to you second point about suggesting habits, comment, comment, comment. Comments will help in explaining what you are doing to another end user and, perhaps more importantly, yourself. It's a bit like Rubber Duck Debugging. Secondly, give your variables more intuitive names; your variable names are all very generic and it takes time to refer back to declarations to see what is going on.