Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,150,722 members, 7,809,750 topics. Date: Friday, 26 April 2024 at 02:14 PM

Isidollarboy's Posts

Nairaland Forum / Isidollarboy's Profile / Isidollarboy's Posts

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

Politics / Re: Sanusi Auwalu: Not Getting National Identity Number To Attract 3-Month Jail Term by isidollarboy(m): 4:45pm On Feb 02, 2020
The fear of visa ban grin grin grin

3 Likes 1 Share

Programming / Re: I Want To Learn Programming. Which Language Should I Start With? by isidollarboy(m): 5:39pm On Sep 26, 2017
18SepPython:
please i need help with this(C programming)

Question: Write a program to calculate the sum of the first and the second last digit of a 5 digit number entered from the keyboard.

solution..

#include <stdio.h>
main(){
int n, first, second, third, forth, fifth, sum;
printf("Enter a 5-digit number\n"wink;
scanf("%d", &n);
/*Now we will take out each digit of this number and then finally add the first and the second last digits*/
first = n/10000; //first digit
n = n%10000;

second = n/1000; //second digit
n = n%1000;

third = n/100; //third digit
n = n%100;

forth = n/10; //forth digit
fifth = n%10; //fifth digit

sum = first + forth;
printf("sum : %d\n", sum);
}

i understand the flow but want to know why

1. n/10000;
2. n = n%1000;

Please help i have been stack with this for days.Thanks

I think this what you are really looking for

#include <stdio.h>
#include <stdlib.h>

int main()
{
int sum;
int number[5];
printf("Enter 5 numbers\n"wink;
for(int i=0; i<5;i++){
scanf("%d",&number[i]);
}
sum =number[0]+ number[4];

printf("The sum of the first and the last number entered is %d",sum);
return 0;
}


output

Enter 5 numbers
1
2
3
4
5
The sum of the first and the last number entered is 6
Process returned 0 (0x0) execution time : 4.917 s
Press any key to continue.
Programming / Re: I Want To Learn Programming. Which Language Should I Start With? by isidollarboy(m): 9:10pm On Aug 19, 2017
johnsnows:
please while trying to learn C programming with visual studio, i faced this can anyone help out please.
Bro, I will suggest you download and use "codeblock" its user's friendly and i bet you, u will enjoy it.
Travel / Re: General German Student Visa Enquiries Part 4 by isidollarboy(m): 10:20am On Aug 07, 2017
Olargee:
I remember reading about the price of health insurance a while back but can't remember or trace the posts. What is the cheapest private health insurance company in Germany. I no too dey sick and besides I plan on travelling with all my meds. So actually, I need the CHEAPEST premium. Please advice!!
Private insurance is the cheapest health insurance and goes at the range of 30 euro upwards while Public, on the other hand, is expensive, goes at the range of 92 euro upwards but comes with better packages when compared to private health insurance. Have it the back of your mind that your medicine won't cover you throughout your stay in Germany, make your decision wisely. Hope this helps.
Programming / Re: I Want To Learn Programming. Which Language Should I Start With? by isidollarboy(m): 10:00pm On Aug 03, 2017
vaspire:
Wow... I love what am seeing on this thread. Am actually learning some programming languages using rithmschool.com... You guys should check it out...is so cool. I also want to be mentored cos I won't like to go back on this journey I have started. I thereby plead with our gurus here to please help a girl on her journey to finding herself.
Good to hear, which language are you learning , I love it when girls turn the table around with codes, I wish I can, would have gladly mentor you, but you will be fine, it's all about motivation and dedication, try to solve each puzzles that comes your way in your language, even if you could not solve it, think towards on how to get the job done and relate some codes to real life problem.. I wish you all the best

1 Like

Programming / Re: I Want To Learn Programming. Which Language Should I Start With? by isidollarboy(m): 5:58pm On Jun 24, 2017
Headlaw:
All I know in Computer is Microsoft and accounting packages. I want to start programming, I have flair for it. where will I start, pls help a brother.
HTML will be your resort point, then after that, you should be able to know what you need to proceed or better off, read the first page of this thread, there is useful information that will set a stepping stone for you... I hope this helps
Programming / Re: I Want To Learn Programming. Which Language Should I Start With? by isidollarboy(m): 1:05am On Jun 03, 2017
Amgreat70:
Am a new bee in programming but not a new bee in ict, so I need someone that can teach me programming in detail from the scratche phyton,c++ java mysql even html. The person should be able to teach me all, if u are interested and can do it quote me let's bargain,note only ph residents
You can actually start learning online yourself, there are bunch of youtube videos and some websites that might help, if you are willing but first is narrow down what you need and go for them one after the other, in the area of your need, those languages you put up there are not joke, no one will have the time to teach all those stuff. I hope this helps
Programming / Re: I Want To Learn Programming. Which Language Should I Start With? by isidollarboy(m): 1:39am On May 07, 2017
sellyjeffery:
Am a year2 uniport computer science student, am also trying to build my coding schools thou i have knowlege in PHP+MYSQL.

But my problem is everybody wants to be a webdeveloper. What about the mobile development,PC development,machine programming,telecomm blablabla..as in,there is much to learn but all i see are intrested webdevelopers. Don't 4get,even an Accounting Student can pick up HTML,SERVER and CLIENT SIDE scripting and dive into development of websites but he would get head ache if he tries programming an operating system(FIRMWARE)..

Am learning python now because it is general purpose and after it, i move to C++ OR JAVA.

I love google so much,so am taking my first python class at

http://developers.google.com/edu/python

Nice one. Move in to C instead of c++, this will help you in learning Matlab as their syntax are almost the same, many big companies are dumping c & cpp for Matlab as it's more effective and does more of what the above mentioned can do. Shalom
Programming / Re: Lets Learn C by isidollarboy(m): 9:48am On Mar 31, 2017
We are waiting, i wondered why una abandon us for here
Travel / Re: General German Visa Enquiries Part 3 by isidollarboy(m): 11:00am On Mar 17, 2017
Angelehi2015:

Sent you a PM
Replied
Travel / Re: General German Visa Enquiries Part 3 by isidollarboy(m): 8:57am On Mar 17, 2017
Angelehi2015:
Hi everyone, please anyone studying at Rhein waal, need your assistance please, thanks
Maybe, i can help you if what you are looking for is not beyond me...
Computers / Re: Post Your Computer (PC) Troubles Here. by isidollarboy(m): 12:36pm On Mar 15, 2017
Hello my people, i have a laptop, dual core, 4gb ram and i intend upgrading the RAM to 8gb, should I just buy 8gb RAM and plug it in or is there any other technical work i need to do? will the increment enhance the fastness of the computer. Thanks in advance
Phones / Re: Phone Engineers On Nairaland Willing To Assist You - Part II by isidollarboy(m): 8:01pm On Jan 23, 2017
bobo65:



It's d downgrade bro
Since u have other files, flash the 4.4.2 now thru d same process
Ok. Thanks, i tried those firwares, still the same "FAIL" message it was giving before, i guess maybe those files are broken but anyway thanks its half manage now. thanks so much, am grateful
Phones / Re: Phone Engineers On Nairaland Willing To Assist You - Part II by isidollarboy(m): 7:27pm On Jan 23, 2017
bobo65:



It's not supposed to be rooted again


Check if ur Bluetooth is working
Yes , except the Wifi and takes longer time in booting.. it shows in red on the left leftt top side of the screen (KERNEL IS NOT SEANDROID ENFORCING)
and in yellow (Set Warranty Bit: Kernel) Thanks
Phones / Re: Phone Engineers On Nairaland Willing To Assist You - Part II by isidollarboy(m): 7:08pm On Jan 23, 2017
bobo65:



Extract the files to a folder
On odin, click on PDA /AP
then select the file in d PDA folder

VOILA!!!! , its has worked out , i am so grateful... thanks so much, GOD BLESS you abundantly... one more thing, how do i unroot the phone and the WIFI is not working..... Many thanks
Phones / Re: Phone Engineers On Nairaland Willing To Assist You - Part II by isidollarboy(m): 6:08pm On Jan 23, 2017
bobo65:



Click on d blue "download now" not the green one


If another window pop up
Go back to d previous window and click on it, it will start downloading


E for make sense if u dey use phone to download
Ok. Thanks, it worked out, finished downloading... but there are five files in the zip file

Pit
Bootloader
CSC full wipe
Modem
PDA

so, how do i go about it? should i enter the files as the space are provided in odin? Thanks
Phones / Re: Phone Engineers On Nairaland Willing To Assist You - Part II by isidollarboy(m): 1:22pm On Jan 23, 2017
bobo65:




Pls no try touch pit at all
Will mess ur memory partition up
Lets downgrade a little lower

http://d-h.st/qOL
Hey bro, i have been finding it difficult to download the firmware due to too many ads from the link, how do i bypass the ads. Thanks
Phones / Re: Phone Engineers On Nairaland Willing To Assist You - Part II by isidollarboy(m): 4:20pm On Jan 19, 2017
bobo65:



No it ain't
ok. thanks boss
I will flash it and get back to you later... thanks, i appreciate so much
Phones / Re: Phone Engineers On Nairaland Willing To Assist You - Part II by isidollarboy(m): 4:01pm On Jan 19, 2017
bobo65:




Pls no try touch pit at all
Will mess ur memory partition up
Lets downgrade a little lower

http://d-h.st/qOL
Thanks bro for your precious time, i will try it out but is this link a torrent site, reason why am asking is that, i am a using a free wifi and there is strict restriction to torrents sites and i will be fine (heavily) for using a torrent. Once again, thanks so much and God bless you..
Phones / Re: Phone Engineers On Nairaland Willing To Assist You - Part II by isidollarboy(m): 4:51am On Jan 19, 2017
bobo65:



Try this odin
http://odin-download.soft112.com/
Thanks bro, i have tried it, still the same.. it fails immediately it starts? Don't know what else to do now!


Pls , Do i need to include .PIT file, i know i read something like that somewhere? Does the location/folder of the firmware matters?

These are the steps am taking, is there anythying am missing?

1. Open odin
2. conect device and wait for the blue light
3. Add the file with either AP/PDA button and wait for some seconds while odin process the file
5. I hit start...... but in few second , it shows fail!

Thanks for your time
Phones / Re: Phone Engineers On Nairaland Willing To Assist You - Part II by isidollarboy(m): 9:21pm On Jan 18, 2017
bobo65:



And u r sure that's ur main model?
Yes , thats my model.
samsung galaxy s4, GT-19505
Phones / Re: Phone Engineers On Nairaland Willing To Assist You - Part II by isidollarboy(m): 8:31pm On Jan 18, 2017
bobo65:



Are u trying to flash the 5.1 version?
Cos that won't work
Flash the 4.4 version

i have tried both, still didnt work! i also use different odin [odin 7, odin 10, & odin 11] but all didn't workout! what else can i do! Thanks for your time
Phones / Re: Phone Engineers On Nairaland Willing To Assist You - Part II by isidollarboy(m): 5:29pm On Jan 18, 2017
nani667:


http://firmwarefile.com/samsung-gt-i9505
Thanks boss, i am downloading it, i will get back to you.. once again God bless


[b]Boss[/b]I ve tried to flash it, but it keeps failing! is there anything am missing?

[b][/b]This is what iam gettig


<ID:0/007> Added!!
<ID:0/007> Removed!!
<ID:0/007> Added!!
<OSM> Enter CS for MD5..
<OSM> Check MD5.. Do not unplug the cable..
<OSM> Please wait..
<OSM> I9505XXUGNG8_I9505YXYGNH2_I9505XXUGNG8_HOME.tar.md5 is valid.
<OSM> Checking MD5 finished Sucessfully..
<OSM> Leave CS..
<ID:0/007> Odin v.3 engine (ID:7)..
<ID:0/007> File analysis..
<ID:0/007> SetupConnection..
<ID:0/007> Initialzation..
<ID:0/007> Get PIT for mapping..
<ID:0/007> Firmware update start..
<ID:0/007> sbl1.mbn
<ID:0/007> NAND Write Start!!
<ID:0/007> FAIL! (Auth)
<OSM> All threads completed. (succeed 0 / failed 1)
Phones / Re: Phone Engineers On Nairaland Willing To Assist You - Part II by isidollarboy(m): 3:22am On Jan 18, 2017
nani667:


Download the stock firmware for your device and flash via Odin ✔

or flash any Custom ROM via recovery (CWM / TWRP) ✔
please, can u give me any link to [SAMSUNG GT19505] firmware and i have not flash rom using odin before though i have flash a rom, i would also need a guide.. Thanks for your fast response.
Phones / Re: Phone Engineers On Nairaland Willing To Assist You - Part II by isidollarboy(m): 9:41pm On Jan 17, 2017
Kudos to all the tech in da haus!

i bricked my samsung galaxy s4 (GT19505) while trying to unroot, its stuck up at boot animation(samsung logo), please any assistance will be of a great help, i have tried factory and cache reset through recovery mode but all to no avail, please i will be happy to get it fix since it has left me phoneless
Phone/Internet Market / Re: iPHONES, SAMSUNGS & iWatches "BestDealz" by isidollarboy(m): 6:01pm On Jan 16, 2017
Yo,
how much is samsung galaxy s6 edge 32??
Travel / Re: General German Visa Enquiries Part 3 by isidollarboy(m): 12:46pm On Nov 28, 2016
em3r4ld:
Interview: 30th Aug, Funding confirmation: 1st Nov, A.m: 10th Nov, Visum: 15th Nov. Now in Deutschland. If smb like me was able to pull this, abeg neve give up on dis dream. It worths it 100%. Had to give up Luxembourg and Canada for this. God bless y'all for all the wonderful contributions. When the going gets tough, the tough gets going
Big congratulations to you, the funniest dude.. Enjoy Deutschland with cold and lectures grin grin grin shocked shocked

2 Likes

Travel / Re: General German Visa Enquiries Part 3 by isidollarboy(m): 10:14am On Nov 12, 2016
I want to use the opportunity to thank every member of this wonderful group for their contributions towards this Germany Journey, it all started last year when I was struggling to join last winter bus been piloted by Eke40seven but all to no avail, I braced up and prepared for the winter 2016. Now the hustle has paid off, many thanks to you all.
Cc: pompido, dolpaz (chairman), honourableseyi (Grand master), Eke40seven (Master and chairman committee), obiwann (your transcript is still active), Galads, style2009, Deja29, kelvinpam (chairman of Siegen), twinkle1, jerrykoyan(chairman), cindino2(Nigeria DE Ambassador), Nevilbot(chairman), observer3, futurewiser (chairman awon boys), keji24, profsamuri, ichommy, kunlelikeme(man in the picture) and many more I couldn’t mention. I remember my first post here, it was like a driver in Sahara Desert without navigator, you guys were there to rescue me, God bless you all, I am so grateful.
Interview date: 22/08/2016
Funding: 13/10/2016
Funding confirmation 17/10/2016
a.m. mail 18/10/2016
visa picked up 26/10/2016 at FedEx office when the bike man was delaying my miracle, I dashed in to their office and showed him my kun Fu skills like Jackie chan. Now in Germany battling with the cold and lectures. All in all, Thanks to God almighty. grin sad shocked smiley smiley

15 Likes

Computers / Re: Post Your Computer (PC) Troubles Here. by isidollarboy(m): 5:29pm On Nov 01, 2016
Sanni45:
I don't see any wireless device installed.Has it been working before?
The very first day, i collected from the engineer who did the installation, the wireless was working, saw some available connections but when I got home tried connecting but to no avail..
Computers / Re: Post Your Computer (PC) Troubles Here. by isidollarboy(m): 3:40pm On Nov 01, 2016
isidollarboy:
Please, help me out, my hp pavilion dm1 wireless is not working, tried many things (drivers) it not working, the once u press the WiFi switch, the Bluetooth will come on. I will attach the screen shot of the device manager. Please make una help me..
Make una help me oo
Computers / Re: Post Your Computer (PC) Troubles Here. by isidollarboy(m): 2:22pm On Oct 31, 2016
Please, help me out, my hp pavilion dm1 wireless is not working, tried many things (drivers) it not working, the once u press the WiFi switch, the Bluetooth will come on. I will attach the screen shot of the device manager. Please make una help me..

Phones / Re: Samsung Galaxy S2, S3, S4, Note 2 & 3 Expert by isidollarboy(m): 9:08pm On Oct 21, 2016
Hello guru's in da house, i have s4 19505 running on lollipop custom rom but the hotspot tethering is not working. How do i go about solving this?

(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (of 13 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. 59
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.