Frac Div Parse
If you wish to view the code only, check this page. You can click the links and it should open up in a notepad file.
class Fracdiv{
public static void main(String args[])
{
int FNum = Integer.parseInt(args[0]);
int FDen = Integer.parseInt(args[1]);
int SNum = Integer.parseInt(args[2]);
int SDen = Integer.parseInt(args[3]);
System.out.println("Here is some fraction crud for you.");
System.out.println(FNum +"/"+ FDen + " divided by " + SNum + "/" +SDen);
System.out.println("equals:");
System.out.println((FNum*SDen) +"/"+ (SNum*FDen));
}
}
No New Terms