Travel › Re: General U.s.a (student) Visa Enquiries-part 8 by exxy(m): 3:00pm On Feb 02, 2016 |
biikeys: Key is start applying as early as possible..for both internships and full-time jobs. For full-time, ideally you want to have at least one offer in hand before you graduate-or things might become tricky with OPT timelines. Brand yourself-highlight your skills on your resume/LinkedIn profile.
The indians you mentioned apply to hundreds and hundreds of openings way before they graduate. Don't limit yourself, especially if you're apply for an entry level position. Connect with recruiters from those companies you apply to on Linkedin too, and drop them a note. Shouldn't be that hard to get something. The boss has spoken, i must greet u boss, how ur side bro ? |
Car Talk › Re: Car Talk Chat Room by exxy(m): 2:54pm On Feb 02, 2016 |
my oga imperiouxx, where u dey boss. how this place dey be, which kind motor make sense as a student, i mean which brand person fit maintain ? |
Car Talk › Re: Car Talk Chat Room by exxy(m): 9:26am On Feb 02, 2016*. Modified: 2:55pm On Feb 02, 2016 |
Hey guys, between Toyota and Nissan, which one would you advice me to buy as a student, i mean which one is easy to maintain |
Travel › Re: General U.s.a (student) Visa Enquiries-part 8 by exxy(m): 5:50am On Feb 02, 2016 |
Walspring: Make use of Google and you will see loads of sample How far now Walspring |
Programming › Re: Hope For C++ Newbies: Gui Toolkits by exxy(m): 11:08pm On Jan 30, 2016 |
timtoday: Are you sure your calculation is right? Nice work on getting something going.
There are a number of thing, I think you can still work on though. Your variable should have meaningful name. Not first, second and the rest. Yes, I know you commented on that, but imagine writing a few hundred lines of codes, how do you remember which is which? Will you keep going back to the beginning of your program file? So names like: initial_ocean_level, ocean_level_mm, ocean_level_cm etc will be a lot better and reduce number of line of comments.
Secondly, the way you are using namespace is not a very good habit. That is for another day. But I think you need to know that up front. You are inputting all the std namespace in another file all together. Yes, is a common practice is not a good one. Am sure you will appreciate it when you are taught scope and namespace.
Lastly, check your calculations and your prompt string. I thought, what you are suppose to have is something like: "Input or Enter initial ocean level: " or somewhat according to the question. Just thinking aloud though. I have no seen your pm Ooo.. Ok bro, i will work on all this things. i pmed u alrd. |
Programming › Re: Hope For C++ Newbies: Gui Toolkits by exxy(m): 5:57pm On Jan 30, 2016 |
My Oga na so i come take run the program, @timtoday, u too much. and codemarshal08, i hail bro. the thing be hard me small sha based on say i just newly start to code. @timtoday, i go pm u bro.
// Emmanuel.cpp : Defines the entry point for the console application. //ocean level now
#include <iostream> using namespace std; /*first represent variable of ocean level in millileter second reprsent variable in milliter to centimeter third represent variable in centimeter to inches fourth represent variable in millimeter multiply by total number of years*/ int main() { double first; double second; double third; double fourth; cout<< "what is the new ocean level after 20 years? "; cin>> first; fourth = first + (3.1 * 20); second = fourth * 0.1; third = second / 2.54;
cout<< third <<" inches" <<endl; cout<< second <<" centimeters" <<endl;
return 0; } /* what is the new ocean level after 20 years? 62 inches4.88189 centimeter12.4 Press any key to continue . . .
what is the new ocean level after 20 years? 50 4.40945 inches 11.2 centimeters Press any key to continue . . . */ |
Travel › Re: General U.s.a (student) Visa Enquiries-part 8 by exxy(m): 2:20am On Jan 30, 2016 |
bayocanny: Studential.com will do the magic You will see a course by course personal statement, ranging from science to humanities study all u need to do is to look for the one that suit you thanks bro |
Programming › Re: Hope For C++ Newbies: Gui Toolkits by exxy(m): 10:09am On Jan 29, 2016 |
timtoday: What do you have written? I mean
#include <iostream>
int main() { // your codes goes here return 0; }
Ok boss, but doing this assignment is looking hard tho |
Programming › Re: I Want To Learn Programming. Which Language Should I Start With? by exxy(m): 10:01am On Jan 29, 2016 |
mexzony: First of all you need to come up with a mathematical model (formulae).that describes the behaviour of the ocean and formualr that help you to input the number of years and give you the predicted ocean level. You will need to remember your math particularly the topic limit and Funtions especially functions... You will need to read up on how yo come up with equations or models for behaviours then turning it into code is easy. Research a bit... Ok bro. sent u a pm |
Travel › Re: General U.s.a (student) Visa Enquiries-part 8 by exxy(m): 9:01am On Jan 29, 2016 |
Can someone list some of the benefits of going to a conference. |
Programming › Re: Hope For C++ Newbies: Gui Toolkits by exxy(m): 8:59am On Jan 29, 2016 |
timtoday: How would you write it? Before we start using the syntax of C++ to express our thought, the question is just an arithmetic conversion. if for the past decade (10) years, the ocean level has raised 3.1 mm / yr. What is the value now? Then, in the next 20 yrs what will it be at the same rate. Do you remember 10mm make 1 cm songs we sang in primary school then , if you don't ask google, for how many mm makes 1 cm, then do the conversion, then how many cm makes 1 inch, or [ how many mm makes 1 inch ] then do the conversion. If you can do that with pen and paper, the rest will be a piece of cake! That is the C++ programming syntax! Ok, How do i go with the syntax bro? |
Programming › Re: Hope For C++ Newbies: Gui Toolkits by exxy(m): 7:38am On Jan 29, 2016 |
timtoday: How would you write it? Before we start using the syntax of C++ to express our thought, the question is just an arithmetic conversion. if for the past decade (10) years, the ocean level has raised 3.1 mm / yr. What is the value now? Then, in the next 20 yrs what will it be at the same rate. Do you remember 10mm make 1 cm songs we sang in primary school then , if you don't ask google, for how many mm makes 1 cm, then do the conversion, then how many cm makes 1 inch, or [ how many mm makes 1 inch ] then do the conversion. If you can do that with pen and paper, the rest will be a piece of cake! That is the C++ programming syntax! ok Boss, let me get that done first |
Travel › Re: General U.s.a (student) Visa Enquiries-part 8 by exxy(m): 4:31am On Jan 29, 2016 |
omoh, personal statement just dey hard me to write, who get idea for computer science personal statement. abeg help me out !! |
Programming › Re: I Want To Learn Programming. Which Language Should I Start With? by exxy(m): 4:21am On Jan 29, 2016 |
My Ogas, make una help me check this assignment whether una fit write the code for C++
During the past decade ocean levels have been rising faster than in the past, an average of approximately 3.1 millimeters per year. Write a program that given the initial ocean level, will compute how much ocean levels are expected to rise during the next 20 years if they continue to rise at this rate. Display the answer in both centiments and inches. The final output should be the projected ocean level. |
Programming › Re: Hope For C++ Newbies: Gui Toolkits by exxy(m): 4:19am On Jan 29, 2016 |
My Ogas, make una help me check this assignment whether una fit write the code for C++
During the past decade ocean levels have been rising faster than in the past, an average of approximately 3.1 millimeters per year. Write a program that given the initial ocean level, will compute how much ocean levels are expected to rise during the next 20 years if they continue to rise at this rate. Display the answer in both centiments and inches. The final output should be the projected ocean level. |
Travel › Re: General U.s.a (student) Visa Enquiries-part 8 by exxy(m): 2:24am On Jan 27, 2016 |
landuseact: Where have you been checking? check linkedin and indeed.com. I will suggest for now not to necessarily narrow down by location, because some companies could be willing to pay for your relocation expenses (that's how I got mine). The ones you claim are for US citizen, how is it stated? is it "for US citizen only" or "must not be seeking sponsorship at this time or a later period" or "must be authorized to work in the USA"? Because if it's the last two you can still go ahead and apply o. ok bro |
Travel › Re: General U.s.a (student) Visa Enquiries-part 8 by exxy(m): 5:45pm On Jan 26, 2016 |
who's up for internships this summer, I need computer science internships. hit me up if u got some, the one when I dey see na for US Citizens |
Programming › Re: Hope For C++ Newbies: Gui Toolkits by exxy(m): 5:12pm On Jan 18, 2016 |
BlueMagnificent: @exxy, First it will be good to know if you've had any programming background prior to this. But that is just by the way. In order not to deviate from the focus of the thread you can visit this C++ helpline thread: https://www.nairaland.com/1820615/c-helpline after you must have gone through the link provided by codemarshal08. I and other fellows would be very glad to assist you in your C++ journey at the helpline thread  Ok Bro, i recently started tho. this is my first prog. language |
Programming › Re: Hope For C++ Newbies: Gui Toolkits by exxy(m): 5:08pm On Jan 18, 2016 |
|
Programming › Re: Hope For C++ Newbies: Gui Toolkits by exxy(m): 3:34am On Jan 17, 2016 |
Hey, I am new to C++, i need all your help on how to start writing code and understand this language |
Travel › Re: General U.s.a (student) Visa Enquiries-part 8 by exxy(m): 2:50am On Jan 04, 2016 |
Special greetings to the house, flexing men. i dey believe una. |
Travel › Re: Travelling To Canada Part 9 by exxy(m): 3:59pm On Nov 15, 2015 |
Amefrica: Lay it on me bro!  I dey see u in 3D glass |
Phone/Internet Market › Re: What Are You Going To Buy On Black Friday? By Wisdomkosi by exxy(m): 4:02am On Nov 15, 2015 |
Oma307: Be serious na 27th of Nov. |
Romance › Re: I Caught A Guy Sniffing My Panties In School by exxy(m): 3:58am On Nov 15, 2015 |
|
Travel › Re: General U.s.a (student) Visa Enquiries-part 8 by exxy(m): 3:38am On Nov 14, 2015 |
Who's a member of AIESEC in the states? |
Travel › Re: General German Visa Enquiries Part 2 by exxy(m): 11:28pm On Nov 11, 2015 |
Theflint i see u! |
Travel › Re: General U.s.a (student) Visa Enquiries-part 8 by exxy(m): 8:16pm On Nov 11, 2015 |
slimmy05: No Ohh ok, how about the shipping thing |
Career › Re: Why Do People Keep Their Salaries Secret? by exxy(m): 4:38pm On Nov 11, 2015 |
PLANETMARS: Me: Why do people keep their salary secret? Google: who you dey ask? Me: haba its just a question Google: thunder fire you make dem tell so u go begin tax them abi?? Oloshi PROUDLY WEREY Lol! |
Travel › Re: General U.s.a (student) Visa Enquiries-part 8 by exxy(m): 4:36pm On Nov 11, 2015 |
Slimmy, how that shipping level they be? I've been sending with usps and nipost dey worry my ppl wen e reach house. |
Travel › Re: General U.s.a (student) Visa Enquiries-part 8 by exxy(m): 4:35pm On Nov 11, 2015 |
slimmy05: Link your GTbank card with paypal and you're good. Its like 222-225 exchange rate for GTbank Slimmy, are u saying one can transfer money to naija via paypal with less exchange rate ? |
Travel › Re: General U.s.a (student) Visa Enquiries-part 8 by exxy(m): 4:32pm On Nov 11, 2015 |
pennstate: That was expensive. I have this challenge too! |
Travel › Re: General U.s.a (student) Visa Enquiries-part 8 by exxy(m): 4:29pm On Nov 11, 2015 |
This thread is flying ! |