Microscopy
Sign in to test your solution.
// Microscopy program
using System;
class Submission
{
// -------------------------
// Subprograms
// -------------------------
static double magnification(int actual_size, int image_size)
{
}
// -------------------------
// Main program
// -------------------------
public static void Main(string[] args)
{
int actual_size =
int image_size =
double mag =
Console.WriteLine("The magnification is " + mag + " X");
}
}
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.