Skip to content

Instantly share code, notes, and snippets.

@joshuakfarrar
Created February 15, 2021 05:05
Show Gist options
  • Save joshuakfarrar/ae5dc81e62847886f8223d1e4c961b80 to your computer and use it in GitHub Desktop.
Save joshuakfarrar/ae5dc81e62847886f8223d1e4c961b80 to your computer and use it in GitHub Desktop.

Ennis and Jack, the dogs, the horses and mules, a thousand ewes and their lambs flowed up the trail like dirty water through the timber and out above the tree line into the great flowery meadows and the coursing, endless wind.

@bopstrong
Copy link

//august nommik
// 2 10 area cal
import java.util.Scanner;

public class ex2
{
public static void main(String[] args)
{
double length, width, area, per;
System.out.println(" type the length of of room");
Scanner sc = new ( System.in);
lenght = sc.next.Double();
System.out.print(" type the width of the room");
width = sc.next.Double();
area = length * width;
per = 2.0*(length + width);
System.out.println(" area and perimeter" + area, per);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment