From: <dymond@idirect.ca>
To: <_arc.hive_@lm.va.com.au>
Subject: c# Bush
Date: Sun, 25 May 2003 00:25:21 -0400 (EDT)
using System;
class GeorgeBush
{
public string Years(int nums){
if (nums>4) {
Democracy(nums);
return "we have lost our humanity";
}
else {
Democracy(nums);
return "we have exerted our rights as Humans";
}
}
public bool Democracy(int cb) {
if (cb<4){
return true;
}
else {
return false;
}
}
}
class MainClass
{
public static void Main(string[] args)
{
;
GeorgeBush You=new GeorgeBush();
int a=Int32.Parse(Console.ReadLine());
bool c=You.Democracy(a);
Console.WriteLine("{0} and your existenz is {1}",You.Years(a), c);
}
}
Back to nettime unstable digest vol 48