// Fish tank volume program
using System;
class Program
{
// -------------------------
// Subprograms
// -------------------------
static int volume(int length, int height, int depth)
{
}
static double litres_to_gallons(int litres)
{
}
// -------------------------
// Main program
// -------------------------
static void Main()
{
int length =
int height =
int depth =
int litres =
double gallons =
Console.WriteLine("A " + Convert.ToString(length) + " x " + Convert.ToString(height) + " x " + Convert.ToString(depth) + " cm tank is " + Convert.ToString(litres) + " litres and " + Convert.ToString(gallons) + " imperial gallons.");
}
}