1/**
2 * Copyright(C) 2003
3 * All Rights Reserved. Salih Yurttas, ZCubes, BitsOfCode Software Systems, Inc..
4 *
5 * Permission to use, copy, modify, and distribute this
6 * software and its documentation for EDUCATIONAL purposes
7 * and without fee is hereby granted provided that this
8 * copyright notice appears in all copies.
9 *
10 * date : September 1, 2003.
11 * authorĀ : Salih Yurttas.
12 *
13 * Compute03.cs
14 */
15
16
17using System;
18
19namespace C
20{
21
22 public class Compute03
23 {
24 public static void Main(string[] args)
25 {
26 // some computations ...
27 Compute.FA(2);
28
29 // some more computations ...
30 Compute.FA(4);
31
32 // some more computations ...
33 Compute.FB(4);
34
35 // some more computations ...
36 Compute.FB(2);
37 }
38 }
39
40}