Go to the documentation of this file.00001 using System;
00002
00003
00004
00005
00006
00007
00008 public class Funktioita
00009 {
00010
00011
00012
00013
00014 public static void Main(string[] args)
00015 {
00016 int a = 4;
00017 int b = 3;
00018
00019 double ka;
00020
00021 ka = Keskiarvo(a, b);
00022
00023 Console.WriteLine("Keskiarvo = " + ka);
00024
00025 double ala;
00026
00027 ala = YmpyranAla(3.0);
00028 Console.WriteLine("Keskiarvo = {0:000.0000} ja ympyrän ala = {1:0.000}" ,ka, ala);
00029 }
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043 public static double YmpyranAla(double r)
00044 {
00045 return Math.PI*r*r;
00046 }
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063 public static double Keskiarvo(int a,int b)
00064 {
00065 return (a+b) / 2.0;
00066 }
00067
00068 }