Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,153,141 members, 7,818,432 topics. Date: Sunday, 05 May 2024 at 03:32 PM

Satmaniac's Posts

Nairaland Forum / Satmaniac's Profile / Satmaniac's Posts

(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (of 12 pages)

Programming / Re: Learning To Program With Java by the Fulaman by satmaniac(m): 7:39am On Apr 15, 2016
Fulaman198:
I made an edit to the original post, this post now has operators and their respective functions and what they do. Enjoy and good night!

Goodnight, and have a wonderful night. This switch and and if-else-if-else statements is quite a powerful stuff. I will have to read day4 tutorial again to make sure I have a good understanding of the topic at hand.

Thank you for taking time out of your busy schedule to see your students.

1 Like

Programming / Re: Learning To Program With Java by the Fulaman by satmaniac(m): 5:22pm On Apr 14, 2016
Fulaman198:

Yes, I'll update this thread again soon. Don't worry.
It is nice hearing from you again. *Heave a sigh of relief* Keeps ears to the ground.

1 Like

Computers / Re: How Do I Connect One Printer To Different Computers? by satmaniac(m): 12:05pm On Apr 14, 2016
[quote author=Fulaman198 post=44688293][/quote]
Salam, in an sami dama dinga tunawa da dalibanka na JAVA. A wuni lafiya.
Programming / Re: Learning To Program With Java by the Fulaman by satmaniac(m): 3:50am On Apr 14, 2016
Fulaman198, I hope all is well at your end. It's just that this silence is so uncomfortable. We hope to hearing from you sir.

1 Like

Programming / Re: Learning To Program With Java by the Fulaman by satmaniac(m): 3:08pm On Apr 12, 2016
asalimpo:
gosh.. see how happy these students are ..
Bubbling with joy to learn..
What is the op feeding them? weed and coffee? java beans and cannabis?
wink

Hahahaha.......so you funny like dis? Ewa Java ati igbo Oshogbo.
Programming / Re: Learning To Program With Java by the Fulaman by satmaniac(m): 9:00am On Apr 12, 2016
seunny4lif:
grin
Amen but dat thing dey confusing grin grin

Not with the way oga fulaman198 is putting us through. Have faith and remember that you could be able to spot the error in my code and it means you are learning well.
Programming / Re: Learning To Program With Java by the Fulaman by satmaniac(m): 8:48am On Apr 12, 2016
seunny4lif:
grin grin I dey battle OOP now
I know you will defeat OOP.
Programming / Re: Learning To Program With Java by the Fulaman by satmaniac(m): 8:44am On Apr 12, 2016
seunny4lif:
grin You are welcome Meself na beginner I be grin
I know but you don epp na.
Programming / Re: Learning To Program With Java by the Fulaman by satmaniac(m): 2:08am On Apr 12, 2016
satmaniac:


I got some books on JAVA last three weeks and I have been reading about JAVA as well as practicing it. I once take my problem to larisoft's thread where he talked about how to hire a good programmer. So, yes this is my first time programming. Why do you ask?
Programming / Re: Learning To Program With Java by the Fulaman by satmaniac(m): 2:06am On Apr 12, 2016
Fulaman198:


Is this your first time programming in Java? Just asking before I go to sleep.
Programming / Re: Learning To Program With Java by the Fulaman by satmaniac(m): 1:57am On Apr 12, 2016
I can not quantify the happiness that swell in my heart right now. Finally, I am in luv, I never knew what it means to be in luv, until I met.... JAVA. Thanks for coming into my life JAVA. I will forever love you, oh my dear JAVA.

1 Like

Programming / Re: Learning To Program With Java by the Fulaman by satmaniac(m): 1:52am On Apr 12, 2016
seunny4lif:
smiley
You try but writing programming in hand
It's a none going area
import java.until.Scanner


Now I know better, Thanks at seun4lif.
Programming / Re: Learning To Program With Java by the Fulaman by satmaniac(m): 1:00am On Apr 12, 2016
Fulaman198:


LOL sure no problem, you didn't do a bad job. You just made some syntactical errors that are easily addressed. As aforementioned, your logic is correct.


Yeah I have seen them and corrected all and the program compile fine. For the sake of forgetfulness, I will mark all the areas the errors are found in my code, so that I will be able to familiarise myself with such errors. Thank you for encouraging me.

1 Like

Programming / Re: Learning To Program With Java by the Fulaman by satmaniac(m): 12:34am On Apr 12, 2016
Fulaman198:


I think you know why your programme won't compile. Just curious do you have a compiler to test the code? It looks like it was written by hand without actually going through the compilation process. There are lots of bugs caused by syntax errors. Your logic is correct, but the code needs some minor corrections. Sorry, I'm a stern and tough grader.

It is true I was using my techno H5 with a partially broken screen, at that time. It is difficult to type out the characters on the screen, at times I need to turn the phone in order to change the screen orientation, so as to get to type some characters. My system is up now, I will compile after the correction, then I will report back here sir. Permission to fall out sir.

1 Like

Programming / Re: Learning To Program With Java by the Fulaman by satmaniac(m): 11:53pm On Apr 11, 2016
Fulaman198:
Today was a rather short lesson on input and output and further information on the JVM. In the next tutorial, We are going to be learning about Conditional Statements (if - else if - else) and switch and we will be writing a programme that involves the utilisation of conditional statements.

As for your assignment, I would like for you to write a programme that prompts a student user for their name, and 4 test scores. With the information gained from the 4 test scores, I would like for you to calculate the median (average) of the 4 test scores and output it back to the user alongside their name.

Example: "Onyewu, your average test score is 84.8" for the output. Please use type double for the test scores and not int. Thank you!
impport java.util.Scanner //wrong spelling of import.

public class TestScores

{

public static void main(String[]args)

{
String name;
double engScr,mathScr,phyScr,chemScr;
double average ; // I really don't know why, I just assign a value of 0.0 to it. Probably, seen somewhere.
Scanner stdio = new Scanner(System.in)
;
System.out.println("Enter your name pls"wink;
name = stdio.nextLine();
System.out.println("Pls, enter your English test
score"wink;
// The out println statement should be on one single line.
engScr = stdio.nextDouble();

System.out.println("Pls, enter your Math test Score"wink;
mathScr = stdio.nextDouble();

System.out.println("Pls, enter your Physics
score"wink;
//Should all be in one single line.
phyScore = stdio.nextDouble(); // phyScore did not match the declared phyScr

System.out.println("Pls, Enter your Chemistry
score"wink;
// Have to be on single line.
chemScore = stdio.nextDouble(); //chemScore did not match the declared chemScr

average = (engScr + mathScr + phyScr chemScr)/4 // Forget to end it with a semicolon(wink


System.out.println("Welcome" + name + "Your
average score is" + average);
// Should be on single line and no semicolon(wink





}
}

Looking forward to corrections from all.

1 Like

Programming / Re: Learning To Program With Java by the Fulaman by satmaniac(m): 5:26pm On Apr 11, 2016
Fulaman198:


It's correct although you used different values than what was assigned. Good job though regardless.

I was just excited at the way you are literally putting java concept into our skulls that I couldn't see the variable values given by you. Anyway, It's been taken care of.

1 Like

Programming / Re: Learning To Program With Java by the Fulaman by satmaniac(m): 7:26am On Apr 11, 2016
public class MultiAdd
{

int num1 = 80;

int num2 = 1010;

public static void main(String[]args)

{

addigit = num1 + num2;

multdigit = num1 * num2;

System.out.println(addigit);

System.out.println(multdigit);







}

}

Modified
Nairaland / General / Re: Special Codes To Format Text On Nairaland by satmaniac(m): 10:40pm On Apr 10, 2016
FARM LAND
Programming / Re: Learning To Program With Java by the Fulaman by satmaniac(m): 4:42pm On Apr 08, 2016
How did you make this so simple? God thank you for showing me this thread. Thank you fulaman!
Programming / Re: How To Hire Good Programmers In Nigeria (an Experience Based Article) by satmaniac(m): 5:18pm On Apr 03, 2016
asalimpo:
because there is no package "java.util.math"

there is also no package named "java.lang.math"
what you have is a class "Math" in package "java.lang" . its full canonical name is "java.lang.Math"

Oh... got it man. Thanks!
Programming / Re: How To Hire Good Programmers In Nigeria (an Experience Based Article) by satmaniac(m): 3:18pm On Apr 03, 2016
Grateful for your contributions, it worked after implementing what you recommended. However, I will want to know why it didn't work even after using "import java.util.math". I mean why would "import java.lang.math" work and "java util.math" refused to work?
@asalimpo I will make sure I do that as it will save me needless headache.
Programming / Re: How To Hire Good Programmers In Nigeria (an Experience Based Article) by satmaniac(m): 1:43am On Apr 01, 2016
dhtml18:

and also save him from committing suicide. . .


Hehehehe.......Suicide indeed. The thing frustrate sotay I come dey reason am say na one old witch dey responsible oh. This my African mindset sef.
Programming / Re: How To Hire Good Programmers In Nigeria (an Experience Based Article) by satmaniac(m): 12:47am On Apr 01, 2016
@asalimpo, dhtml18, and larisoft, I am very grateful of your kindness and generosity and I am also sorry for posting it here instead of creating a thread. Make una no vex, una know say for programming una be elders and me be una last born. Una kukuma know say last born tend to misbehave sometime, so, make una no binu oh.

Judging by your responses, I have no single doubt that I am in good and capable hands. Thanks, once again, elder broses.

Now, let me go try it out, I will report what transpire ASAP.
Programming / Re: How To Hire Good Programmers In Nigeria (an Experience Based Article) by satmaniac(m): 2:08am On Mar 31, 2016
larisoft:
I will really appreciate the input of senior developers on this forumn on their hiring experiences in Nigeria, as well as steps in this article they do not agree with.

Hello larisoft, your post is one of the few posts I enjoy reading on Nairaland, especially, here in the programming section. Although, this piece may not be of use to me, as I am just starting out as a beginner in programming, That will not deny me the privilege of accessing your assistance and that of other programming gurus here. In my quest to learn programming, I picked Java and I have been quietly studying some books as well as watching some videos I got from the internet and off course, I put what I learnt into practice. As you know, a beginner like me will encounter some hitches or challenges in the form of errors in my written codes, I am currently having issues with my java class methods.

The problem is that I have been trying to no avail, to make my java class method work. For example, the math class like Math.random(); or Math,sqrt(); refuses to work and have been displaying this error: "Can not find symbol System,out.println(Math.random(number)); Symbol: random(int) Location: class Math " I really need to know why it is displaying this error. Below is the entire code:


public class Math
{
public static void main(String[]args)
{
int x = 100;

System.out.println(Math.random(x));

//System.out.println(Math.sqrt(x));
}
}

This error is driving me nuts, save my sanity........

Ccc larisoft, dhtml18, seunthomas, Danielthegeek, asalimpo and others.
Politics / Re: 2016 Budget Is A Big Fraud - PDP by satmaniac(m): 1:50am On Dec 23, 2015
ehissi:
Sometimes I Laugh when I hear people talk of APC and PDP and leave out the real issues that are the focus of a debate in an annoymous forum line Nairaland.

Don't get me wrong; I see nothing wrong with somebody just supporting Buhari's government in a presidential election just because he likes Buhari, but when I see people harp so much on the PDP/APC affliation; then I feel tempted to ask!

In the midst of all this party bickering; how many people even realise that Buhari was actually a former card carrying member of the PDP?? tongue

https://www.nairaland.com/174931/quit-anpp-ume-ezeoke-tells-buhari

I guess many people - including all the juvenile political critics of the individual parties - don't even know that the only reason he left PDP for ANPP back then, which is still the same reason he left ANPP for CPC which eventually merged with other parties to form APC is because he complained bitterly that at every turn he wasn't made the party flag bearer for presidential elections!

He has always made it clear, in every political party he goes that he wants to rule this country and I believe somehow God has blessed him with that opportunity; from May 29 to December 29 will mark exactly 7 months, by december 29 his government will be 7 months old!!

It is time for the fellow to encourage his members of his kitchen cabinet to shut up and get to work and stop wasting precious time bickering over trivialities that bear no value on the lives of average Nigerians!!





Go back and read the news link u provided in your post. You misunderstood the PDP membership part.
Satellite TV Technology / Re: Free To Air Satellite Tv General Thread by satmaniac(m): 5:37pm On Dec 17, 2015
life707:
@satmaniac, being trying to reply your email but its not going tru since sat.

OK, then here is my number- 07033633907, if you dont mind
bro.
Politics / Re: Nigeria by satmaniac(m): 6:43pm On Dec 06, 2015
larryUG:

Tonye Barcanista, nothing can be worse dan a man who stands for nothing. 1st it was APC, u tried to lobby for funds and all, u left for pdp, now u r gradually going bk to APC. That is why Tinubu will forever get my respect even though I am pro-pdp. The man has always been on one side and he is a man that can say to his followers go, they will go knowing he won't sell out or decamp. A man who stands for nothing, falls for anything.
How does barcanista's opinion on the this issue amount to him becoming the member of APC? Or are you now telling us that you can only remain a supporter of PDP when you refuse to critise any wrongdoings perpetrated by its members?
Health / Re: Neurological Screening Test by satmaniac(m): 6:40am On Nov 22, 2015
This N too like controversy pass OBJ. So, my brain work pass some browsers? Lord, I thank you cheesy
Webmasters / Re: Learn Web Design LIVE On Nairaland!!! by satmaniac(m): 7:08pm On Oct 03, 2015
4ross:
(MTN BIS IS ON PC AND MOBIL BACK AND BETTER!)
things needed
* BetaMint software
*javaruntime to lunch BetaMint software
*last mtn bb10 subcribtion code to subcribe as followed below
New subscription code to get your BetaMint working with MTN Blackberry Subscription PLEASE NOTE: Other settings remain the same, although you may need to cancel your old bis subscription before subscribing to this, do that by sending "EXPIRE" to 21600 (for does who have bis before.)
NEW CODE BELOW:
1 DAY Subscription: text "BBLITED" to 21600 OR dial *216*7# , Costs #70
1 DAY Subscription: text "BBMIDID" to 21600 OR dial *216*4*1# , Costs #100
1 MONTH Subscription: text "BBLITEM" to 21600 OR dial *216*3*3#, Costs #1,000
Daily plans are highly recommended if you use a fairly large amount of data per day.

Download the latest BetaMint software. Link (BetaMint v1.9.1): http://www.tweakwarevpn.net/downloads/betamint_v1.9.1.zip
Download and install JRE 1.7 (Java Run Time) 32bit (i.e if you don't already have this or a higher version installed).
*** You MUST download 32bit java even if your PC is 64bit else BetaMint will not open. ***
Link (JRE 32bit): http://filehippo.com/download_jre_32/

Download and install OpenVPN (32bit or 64bit depending on your OS arch) (i.e if you don't already have this installed).
Link (Openvpn 32bit): http://swupdate.openvpn.org/community/releases/openvpn-install-2.3.6-I601-i686.exe
Link (Openvpn 64bit): http://swupdate.openvpn.org/community/releases/openvpn-install-2.3.6-I601-x86_64.exe

Extract BetaMint to your desktop or any directory of your choosing.
Launch BetaMint and fill in your account details.
(To register for an account visit http://www.tweakwarevpn.net/?action=register)
On the BetaMint interface, tick the "connect" box beside the "OpenVPN Window" if you want to use the VPN connection.
Subscribe to any MTN BlackBerry subscription mentioned above.
Configure and Connect your MTN Modem.
APN: web.gprs.mtnnigeria.net
username: web
password:web
Connect BetaMint and wait for it to get connected.
If you chose to use the VPN by ticking the appropriate check box then BetaMint will automatically establish a VPN connection.
Once this is done, you can now configure your browsers
Now you should be able to browse and download.
pleas note the BetaMint software will not connect till you upgrade your account to premium.
to upgrade your account call 08110267649
i also sell PM at best rate

1 Like

(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (of 12 pages)

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 53
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.