₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,325,330 members, 8,421,378 topics. Date: Saturday, 06 June 2026 at 10:45 AM

Toggle theme

Donkoleone's Posts

Nairaland ForumDonkoleone's ProfileDonkoleone's Posts

1 (of 1 pages)

CelebritiesRe: Is Don Jazzy(michael Enebeli) Enebeli Elebuwa's Son? by donkoleone(m): 6:19pm On Dec 30, 2008
i doubt if its true,if it were true Don Jazzys name would be Micheal Elebuwa,not Micheal Enebeli.Abi na im papa firstname b im surname
ProgrammingRe: Cisco Opens Software Developer Contest by donkoleone(m): 5:57pm On Dec 26, 2008
im currently on my CCNA certification course,im in CCNA2 n did not even hear about the thing.anyway what kind of software are we talking bout,networkin based or what?
ProgrammingRe: Java Programming For Dummies by donkoleone(m): 1:59pm On Dec 11, 2008
SBUCareer u doin a great job,its always a good tin teachin others programmin,ill gladly b of help if u need me for code examples,kip it up.
ProgrammingRe: New To Programming by donkoleone(m): 12:52pm On Dec 09, 2008
i recommend Java,i agree with seun on python but learnin a strong lang. like Java after python might be bit difficult,Java first then python
ProgrammingRe: My Fellow Java Programmers Might Like This,its Not A Main Class Though by donkoleone(op): 3:08pm On Nov 27, 2008
OK so my funny code caused quite a stir,well the code was written months ago and happened to be in my flash as at the time so i posted it,well i agree with ur views cos(1) the lack of:
try( )
{
System.out.print,
int num=oui.nextInt();
}
catch(inputmismatchexception mismatchexception)
{
System.err.print( "TRY ANOTHER VALID VALUE" )
int num,
}
the lack of the exception handling feature was a flaw(i was not used to it as at the time the code was written)'also switch statements tend to make ur code neater and more readable,agreed.as for my brother that did not know what the code was for it was meant to be an ATM demo with acc. opening features.YEWATIDE ur views ar agreed wit but next time exhibit more matured relations wit ur fellow programmers.
ProgrammingRe: Java Rules,who Thinks Otherwise? by donkoleone(op): 2:54pm On Nov 27, 2008
Well sincerly i agree with a4extra on his view,my likeness for java might be a dislike to others anyhow.YEWATIDE i wil like to know what lang. u prefer,then i will face u properly and state my case. wink wink
ProgrammingRe: Java Rules,who Thinks Otherwise? by donkoleone(op): 3:47pm On Nov 25, 2008
jacob05 be free to view 2 standalones that ive pasted as topics,now show me yours shocked
ProgrammingMy Fellow Java Programmers Might Like This,its Not A Main Class Though by donkoleone(op): 3:42pm On Nov 25, 2008
import java.util.Scanner;

public class bank
{
private String bankName;

public bank( String name )
{
bankName = name;
}

public void setBankName( String name )
{
bankName = name;
}

public String getBankName()
{
return bankName;
}

public void displayMessage()
{
System.out.printf( "ACCOUNT UTILITY FOR %s\n",getBankName() );
}



public void processAccount()
{

System.out.println( "DEFAULT MENU BUTTONS:" );
System.out.println( "-'1' accesses new account processing" );
System.out.println( "-'2' accesses crediting transaction" );
System.out.println( "-'3' accesses debiting transaction" );
System.out.println( "-'4' exits application" );
Scanner input = new Scanner( System.in );
System.out.println( "ENTER '1' TO ACCESS NEW ACCOUNT PROCESSING" );
int x=input.nextInt();
if( x == 1 )
{
System.out.println( "ENTER NAME OF ACCOUNT OPENER:" );
String t = input.nextLine();

System.out.println( "ENTER OCCUPATION OF ACCOUNT OPENER:" );
String y = input.nextLine();

System.out.println( "ENTER INITIAL DEPOSIT AMOUNT:" );
int z = input.nextInt();

System.out.println( "ASSIGN ACCOUNT NUMBER:" );
int d = input.nextInt();

System.out.printf( "\nNAME: %s\n", t );
System.out.printf( "\nOCCUPATION: %s\n", y );
System.out.printf( "\nDEPOSIT AMOUNT: %d\n", z );
System.out.printf( "\nACCOUNT NUMBER: %d\n", d );

}else
System.out.println( "ENTER '2' TO ACCESS CREDITING TRANSACTION" );
int u=input.nextInt();
if( u == 2 )
{
System.out.println( "ENTER ACCOUNT NUMBER:" );
int f = input.nextInt();

System.out.println( "ENTER PRESENT AMOUNT IN ACCOUNT:" );
int h = input.nextInt();

System.out.println( "ENTER AMOUNT TO ADD:" );
int g = input.nextInt();

int sum = h + g;


System.out.printf( "AMOUNT SUCCESSFULLY ADDED: %d\n", sum );
}else
System.out.println( "ENTER '3' TO ACCESS DEBITING TRANSACTION" );
int r=input.nextInt();
if( r == 3 )
{
System.out.println( "ENTER ACCOUNT NUMBER:" );
int k = input.nextInt();

System.out.println( "ENTER CURRENT AMOUNT IN ACCOUNT:" );
int w = input.nextInt();

System.out.println( "ENTER AMOUNT TO DEBIT:" );
int q = input.nextInt();

int debit = w - q;

System.out.printf( "AMOUNT SUCCESSFULLY DEBITED: %d\n", debit );
}else
System.out.println( "ENTER '4' TO EXIT APPLICATION" );
int j=input.nextInt();
if( j == 4)
{
System.out.println( " BYE-BYE " );

}

}

}




ProgrammingHealth Proffessionals And Doctors U Can Make Use Of This For Ur Hospitals by donkoleone(op): 3:37pm On Nov 25, 2008
import java.util.Scanner;

public class medical
{
private String hospitalName;

public medical( String name )
{
hospitalName = name;
}

public void setHospitalName( String name )
{
hospitalName = name;
}

public String getHospitalName()
{
return hospitalName;
}
public void displayMessage()
{
System.out.printf( "ANALYSIS PROGRAMME FOR HEALED CANCER PATIENTS\n at %s\n", getHospitalName() );
}

public void analysis()
{
Scanner input = new Scanner( System.in );

int counter=0;
int average;
int total = 0;
int result;

System.out.println( "\nENTER MEDICAL RESULT OR -1 TO EXIT:" );
result = input.nextInt();

while( result != -1 )
{
total = total + result;
counter = counter + 1;
System.out.print( "ENTER MEDICAL RESULT OR -1 TO EXIT:" );
result = input.nextInt();
}



average = total / counter;

System.out.printf( "\nAVERAGE NUMBER OF PEOPLE HEALED: %d" , average );
}

}







public class medical1
{

public static void main( String args[] )
{

medical nurse = new medical("GRAYS HOSPITAL"wink;

nurse.displayMessage();

nurse.analysis();

}

}
Tech JobsRe: I.t Consultant Needed To Design Custom Software For Dry Cleaning Company by donkoleone(m): 3:01pm On Nov 25, 2008
MITNEXUS you need a programmer,if ur serious post me back with the specifications of the needed software and i will contact you on the possibility of a business arrangement
Tech JobsRe: Needed: A Webbased Software Dat Takes Pic Wen U Login by donkoleone(m): 2:55pm On Nov 25, 2008
my man is it that you wnt them snapped without their knowledge or you just want a dedicated software for doing the job,otherwise the staff can simply be instructed to snap themselves and send cheesy it to the database
ProgrammingRe: Thunder Strike The CEO Of Sun Microsystems If JavaFX Fails! by donkoleone(m): 2:47pm On Nov 25, 2008
javalove believe me i love java in fact i am a FANATIC of java,however i believe sunmicrosystems has a good reason for doing what they did,changes or not well keep developing our needed softwares.peace ,keep lovin java wink
ProgrammingRe: Python Programming by donkoleone(m): 2:39pm On Nov 25, 2008
jacooooooooooooooooooob, when will u realise the fact dat the ease of desktop application creation is all in JAVAs hands
ProgrammingRe: Post Java Questions On Creating Files And Using Streams Here by donkoleone(op): 2:33pm On Nov 25, 2008
jacob my man its not about the ease of creation but its about what u can create,python is a secondary lang. dat can b used to augment a knowledge in JAVA,the ultimate wink
ProgrammingRe: Java Rules,who Thinks Otherwise? by donkoleone(op): 2:27pm On Nov 25, 2008
so tell me JACOB how many stand alone progs. have u made with reptile, sorry python hahahah cheesy
ProgrammingPost Java Questions On Creating Files And Using Streams Here by donkoleone(op): 8:54am On Nov 25, 2008
post post post
ProgrammingJava Rules,who Thinks Otherwise? by donkoleone(op): 8:48am On Nov 25, 2008
O.K who thinks theres a programming language better than JAVA,tell me and i will change ur mind
ProgrammingRe: I Want To Become A Good Systems Programmer Before I Graduate by donkoleone(m): 10:02am On Nov 11, 2008
dude anyone that likes programming and IT is my friend so as friends i recommend u to firstly focus on JAVA,the best programing lang. ever made.this said get a copy of JAVA,HOW TO PROGRAM 7TH EDITION by DEITEL & DEITEL, after that spend good devoted time to practice,if u bcome an expert sun microsystems certification exam might be a plus.good luck
ProgrammingRe: I Want To Be A Programmer But I Don't Like Mathematics. by donkoleone(m): 9:49am On Nov 11, 2008
programmin aint all about maths, logic and creative reasoning is what is needed.ur ability to know what you want to do and develop algorithms to make ur code is what works.good luck wink
ProgrammingRe: Here You Find Links To Programming Languages by donkoleone(m): 9:44am On Nov 11, 2008
thanks 4 da links,thanks 4 sharing da knowledge. wink
Tech JobsRe: Programmers Needed by donkoleone(m): 4:28pm On Nov 07, 2008
Well im still in the university but i hav a good knowledge of JAVA.If ur serious we can reach an agreement where ill create ur softwares and send ur codes as mail attachments to you 4 certain fees.provided ur legit. wink
ProgrammingRe: . by donkoleone(m): 4:19pm On Nov 07, 2008
Well uv done well by likin programming,i recommend the following steps to take,CHOOSE A PARTICULAR LANG. THAT U LIKE AND GET BOOKS ON THAT LANG., SEARCH GOOGLE AND DOWNLOAD SOFTWARES AND IDES USEFUL FOR UR LANG. I SUGGEST NETBEANS SINCE IT DEVELOPS C++,JAVA,RUBY., LASTLY DEVOTE UR TIME TO IT WELL,.GOOD LUCK wink
ProgrammingRe: Help I Need To Test My Java Application On My Laptop by donkoleone(m): 4:11pm On Nov 07, 2008
download ur JDK and java runtime env. from sun.java.com, set the path of ur downloaded JDK to ur command prompt and run ur programs from there with the javac and java commands.Alternatively download an IDE such as NETBEANS.ECLIPSE, or codewarrior from download.com.good luck
CareerRe: NIIT: Are They Worth It? by donkoleone(m): 4:06pm On Nov 07, 2008
NIIT is woth the while,if u want to be an IT proffessional,their training and certs. are really worth it. wink

1 (of 1 pages)