wazua Wed, Jun 10, 2026
Welcome Guest Search | Active Topics | Log In

141 Pages«<8687888990>»
IEBC Official Results - Form 36 - Bomas of Kenya
McReggae
#871 Posted : Friday, March 08, 2013 6:43:08 PM
Rank: Elder

Joined: 6/17/2008
Posts: 23,365
Location: Nairobi
Thought we agreed ni saa ya phombe sasa....
..."Wewe ni mtu mdogo sana....na mwenye amekuandika pia ni mtu mdogo sana!".
hindi ni riu
#872 Posted : Friday, March 08, 2013 6:47:19 PM
Rank: Member

Joined: 5/2/2010
Posts: 305
simonkabz wrote:
Nasikia eti Returning Officer wa Nithi ameingia Bomas watu wakafaint!


Laughing out loudly Laughing out loudly Laughing out loudly Laughing out loudly this drama ain't ending till the last straw.

“Once the last tree is cut and the last river poisoned,you will find you cannot eat your money" Traditional saying.
Behemoth
#873 Posted : Friday, March 08, 2013 6:47:38 PM
Rank: Member

Joined: 8/7/2012
Posts: 180
Ati some 11 constituencies had not been included in the final tally being screened by IEBC & they have admitted????

LINK
Eagles don't flock, you have to find them one at a time.
techboy
#874 Posted : Friday, March 08, 2013 6:48:10 PM
Rank: User

Joined: 6/18/2009
Posts: 271
IT'd wrote:
techboy wrote:
Seq Lu wrote:
holycow wrote:
Laughing out loudly Laughing out loudly Laughing out loudly

Total votes cast = X
Half of X = x/2= Y
Uhurus votes =U

therefore, if U-Y is greater 1, no runoff, elseif U-Y is less than 1 or -ve, runoff.

Where X, Y and U are variables depending on IEBC figures.


a quick API to help wazua calculate this smile
package org.iebc.prezzo.votes;

import java.util.Scanner;

/**
* @author xxxx yyyy
*
*/
public class WinnerCalculator {

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub

/*
* @non-javaDocs
* Prompt user to enter totalVotesCast,
* 2d prompt - UhuruVotes
*/
Scanner scan = new Scanner(System.in);
System.out.println("Enter total Votes Cast: ");
int totalCast = scan.nextInt();
System.out.println("Enter Uhuru votes: ");
int uhuruVotes = scan.nextInt();

// This sh*t returns true if second roundi :)
System.out.println("Is Second round? : " + isSeccondRound(totalCast, uhuruVotes));
// test data
// isSeccondRound(10115704, 3115704)
}

/**
* evaluate if runoff
*
* @param totalVotesCast (not null)
* @param uhuruVotes (not null)
*
* @return isSecondRound - true or false
*/
public static boolean isSeccondRound(int totalVotesCast, int uhuruVotes) {

int fifty_Percent_Plus_One = 0;

fifty_Percent_Plus_One = totalVotesCast / 2;
int _holder = uhuruVotes - fifty_Percent_Plus_One;

// conditional if
return (_holder < 1 ? true : false); // runoff if true else nope
}
}

Out put with sample data
Enter total Votes Cast:
10115704
Enter Uhuru votes:
6115704
Is Second round? : false



Applause Applause Applause Applause Applause Applause Applause Applause . wow

lol i hope you are commending him on at least commenting out his "code"


i love java too. actually never thought i could use it to solve election stuff
techboy
#875 Posted : Friday, March 08, 2013 6:50:02 PM
Rank: User

Joined: 6/18/2009
Posts: 271
hindi ni riu wrote:
simonkabz wrote:
Nasikia eti Returning Officer wa Nithi ameingia Bomas watu wakafaint!


Laughing out loudly Laughing out loudly Laughing out loudly Laughing out loudly this drama ain't ending till the last straw.


i agree with you .
techboy
#876 Posted : Friday, March 08, 2013 6:52:02 PM
Rank: User

Joined: 6/18/2009
Posts: 271
FATHER: Son, did U receive a text
confirming your K.C.S.E results.
SON: Yes Dad, I got it last week.
FATHER: Ooh that's good
whydidn't
you tell me what you got?
SON: Dad, coz those are still
Provisional results, they are not
very accurate.
FATHER: Ok, so what did you get
Son?
SON: Dad u do know that
Provisional results, receivedby
electronic means somebody can
tamper with it before u receive it.
FATHER: Son, you are not
answering
my question, what did you get?
SON: Dad, I think someone hacked
my SMS feed.
FATHER: I will not ask u again,
Mama Nanii leta Fimbo.
SON: Chill, chill dad,the SMS
implied that I got an E but it's still
too early to judge, meaning itcan
change anytime coz my
stronghold
subjects are not in yet!!
waiter
#877 Posted : Friday, March 08, 2013 6:59:33 PM
Rank: Member

Joined: 10/27/2008
Posts: 52
wazuaguest
#878 Posted : Friday, March 08, 2013 7:06:24 PM
Rank: Member

Joined: 2/9/2012
Posts: 576
Behemoth wrote:
Ati some 11 constituencies had not been included in the final tally being screened by IEBC & they have admitted????

LINK

just saw that too
How? if that is true IEBC must be the most incompetent team ever kuliko Eck.
Africa belongs to Africans.
McReggae
#879 Posted : Friday, March 08, 2013 7:06:43 PM
Rank: Elder

Joined: 6/17/2008
Posts: 23,365
Location: Nairobi
[quote=waiter]Just seen this

http://www.nation.co.ke/.../-/k15317z/-/index.html[/quote]

Now you have seen.
..."Wewe ni mtu mdogo sana....na mwenye amekuandika pia ni mtu mdogo sana!".
Seq Lu
#880 Posted : Friday, March 08, 2013 7:07:44 PM
Rank: Member

Joined: 1/30/2009
Posts: 164
techboy wrote:
IT'd wrote:
techboy wrote:
Seq Lu wrote:
holycow wrote:
Laughing out loudly Laughing out loudly Laughing out loudly

Total votes cast = X
Half of X = x/2= Y
Uhurus votes =U

therefore, if U-Y is greater 1, no runoff, elseif U-Y is less than 1 or -ve, runoff.

Where X, Y and U are variables depending on IEBC figures.


a quick API to help wazua calculate this smile
package org.iebc.prezzo.votes;

import java.util.Scanner;

/**
* @author xxxx yyyy
*
*/
public class WinnerCalculator {

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub

/*
* @non-javaDocs
* Prompt user to enter totalVotesCast,
* 2d prompt - UhuruVotes
*/
Scanner scan = new Scanner(System.in);
System.out.println("Enter total Votes Cast: ");
int totalCast = scan.nextInt();
System.out.println("Enter Uhuru votes: ");
int uhuruVotes = scan.nextInt();

// This sh*t returns true if second roundi :)
System.out.println("Is Second round? : " + isSeccondRound(totalCast, uhuruVotes));
// test data
// isSeccondRound(10115704, 3115704)
}

/**
* evaluate if runoff
*
* @param totalVotesCast (not null)
* @param uhuruVotes (not null)
*
* @return isSecondRound - true or false
*/
public static boolean isSeccondRound(int totalVotesCast, int uhuruVotes) {

int fifty_Percent_Plus_One = 0;

fifty_Percent_Plus_One = totalVotesCast / 2;
int _holder = uhuruVotes - fifty_Percent_Plus_One;

// conditional if
return (_holder < 1 ? true : false); // runoff if true else nope
}
}

Out put with sample data
Enter total Votes Cast:
10115704
Enter Uhuru votes:
6115704
Is Second round? : false



Applause Applause Applause Applause Applause Applause Applause Applause . wow

lol i hope you are commending him on at least commenting out his "code"


i love java too. actually never thought i could use it to solve election stuff


.. and a necessary distractor from erections smile
They keep moving the cheese

stolen from opensuse forums :)
141 Pages«<8687888990>»
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.

Copyright © 2026 Wazua.co.ke. All Rights Reserved.