Science/Technology › Re: What's The Contributions Of Christianity To The Modern Science And Technology? by Mizblinks(op): 1:59pm On Jul 30, 2016 |
blueAgent: You can google it. I've tried that severally but can't come up with something tangible... Maybe you should help me with that... Thanks anyways. |
Christianity Etc › Re: What's the Contributions Of Christianity To The Modern Science And Technology? by Mizblinks(op): 7:00am On Jul 30, 2016 |
Thanks dear... |
Science/Technology › Re: What's The Contributions Of Christianity To The Modern Science And Technology? by Mizblinks(op): 6:53am On Jul 30, 2016 |
johnydon22: There have been a lot of Notable very influential Christian scientists whose works influenced many of our modern works. Thanks sire, this really helped.. Kindest regards.. |
Christianity Etc › Re: What's the Contributions Of Christianity To The Modern Science And Technology? by Mizblinks(op): 6:21pm On Jul 28, 2016 |
|
Christianity Etc › Re: What's the Contributions Of Christianity To The Modern Science And Technology? by Mizblinks(op): 6:14pm On Jul 28, 2016 |
macof: There's no contribution of Christianity or Islam to science. either modern or ancient
however some Muslims and Christians have been instrumental to the development of science. Science and Technological advancement has nothing to do with religion. .if anything, religion sets it back decades and even centuries How about some of this contributions by Christians scientists and technologist, can you help me with that? Thanks. |
Science/Technology › Re: What's The Contributions Of Christianity To The Modern Science And Technology? by Mizblinks(op): 6:08pm On Jul 28, 2016 |
I don't know how to put this but if there's a way I can get contributions of Christianity to modern science and technology I will appreciate.. Thanks... |
Christianity Etc › Re: What's the Contributions Of Christianity To The Modern Science And Technology? by Mizblinks(op): 5:49pm On Jul 28, 2016 |
|
Science/Technology › What's The Contributions Of Christianity To The Modern Science And Technology? by Mizblinks(op): 5:30pm On Jul 28, 2016 |
Someone should help me identify the contributions of Christianity to the modern science and technology please... Thanks in advance.
Cc: johnydon22, ogaemma, blueAgent, mrphysics et el.... |
Christianity Etc › What's the Contributions Of Christianity To The Modern Science And Technology? by Mizblinks(op): 5:18pm On Jul 28, 2016*. Modified: 5:56pm On Jul 28, 2016 |
Someone should help me identify the contributions of Christianity to the modern science and technology please... Thanks in advance.
Cc: otemanuduno, HARDDON , HardMirror, macof, parisbookaddict, plappville, truthman2012, KingEbukaNaija, OLAADEGBU, bingbagbo, winner01, anunaki et el.... |
Romance › Re: Artist Captured Sex Acts As Strangely Beautiful X-rays (IN PICS) by Mizblinks(f): 10:18am On Jul 19, 2016 |
|
Romance › Re: What Do U Think About This Guysss??????? (pic) by Mizblinks(f): 10:15am On Jul 19, 2016 |
farellstone: The amount of time and energy you spent in typing the word"ugly"could have been used in typing the word "nice".what will it cost you to say positive things abt other people. Awwww! My bad... Nice then. |
Romance › Re: What Do U Think About This Guysss??????? (pic) by Mizblinks(f): 8:35am On Jul 19, 2016 |
ugly  |
Romance › Re: 4 Signs She Is Sexually Experienced by Mizblinks(f): 8:23am On Jul 19, 2016 |
|
Romance › Re: Artist Captured Sex Acts As Strangely Beautiful X-rays (IN PICS) by Mizblinks(f): 8:09am On Jul 19, 2016 |
scary mehn, but cool..  |
Romance › Re: 4 Signs She Is Sexually Experienced(counter Post) by Mizblinks(f): 8:06am On Jul 19, 2016 |
hmmm, ain't bad...  |
Romance › Re: Now She Wants Me Back After All She Did To Me by Mizblinks(f): 8:03am On Jul 19, 2016 |
your heart says no, there's no point going back to her again.. if you can help her financial in anyways, it's all good... |
Education › Help! Assistant Secretary General Manifesto Sample by Mizblinks(op): 8:41am On Jul 18, 2016 |
Good morning guys, how was your weekend? Please i need your help, i am contesting for assitant secretary general portfolio in my department, am contesting for the first time, I need a manifesto sample please. Screening is coming up in four days and I need to present one. I will be grateful if anyone can help me with it. Thanks so much in advance, remain blessed. |
Programming › Re: Someone Should Help Me Solve This C++ Question Please by Mizblinks(op): 7:14pm On Jun 10, 2016 |
olarid01: Well done bro. But this won't take care of the two years and also it can be generalized so that the number of courses in each year will be requested at program start.
Take a look a this:
#include <stdafx.h> #include <iostream> using namespace std;
int main() { char pause; //Number of courses per year int yone, ytwo;
const int NoOfStudents = 2; cout << "\nHow Many Courses in Year One? " << "\t"; cin >> yone ; cout << "\nHow Many Courses in Year Two? " << "\t"; cin >> ytwo ;
//Creating the student data structure struct Genstudent{ float *Yearone; float *Yeartwo; };
//Creating Array of students for the number of students Genstudent student[NoOfStudents];
//Initializing the students variables for(int x = 0; x < NoOfStudents; x++){ student[x].Yearone = new float[yone]; student[x].Yeartwo = new float[ytwo]; } //Getting All the Scores for(int x = 0; x < NoOfStudents; x++){ //getting the scores For Year One for all students cout<<"Student "<<x+1<<"\n"; cout<<"========="<<"\n"; for (int i=0; i<yone; i++){ cout<<"\n\tStudent"<<x+1<<": Input Score For Year 1 Course: "<<i+1<< "\t"; cin>>student[x].Yearone[i]; } //getting the scores For Year two for all students for (int i=0; i<ytwo; i++){ cout<<"\n\tStudent"<<x+1<<": Input Score For Year 2 Course: "<<i+1<< "\t"; cin>>student[x].Yeartwo[i]; }
}
//Printing All the Scores
// For Year ONE cout << "\n\n\t\t The Scores For Year One Are\n"; cout << "\t\t === ====== === ==== === ===\n"; cout<<"\t\t"; for (int i=0; i<yone; i++){ cout<<"Course "<<i+1<<"\t"; } //putting a line break cout<<"\n"; for(int x = 0; x < NoOfStudents; x++){ //getting the scores For Year One for all students cout<<"Student"<<x+1<<": "<<" \t"; for (int i=0; i<yone; i++){ cout<<student[x].Yearone[i]<<"\t\t"; } cout<<"\n"; }
// For Year TWO cout << "\n\n\t\t The Scores For Year Two Are\n"; cout << "\t\t === ====== === ==== === ===\n"; cout<<"\t\t"; for (int i=0; i<ytwo; i++){ cout<<"Course "<<i+1<<"\t"; } //putting a line break cout<<"\n"; for(int x = 0; x < NoOfStudents; x++){ //getting the scores For Year One for all students cout<<"Student"<<x+1<<": "<<" \t"; for (int i=0; i<ytwo; i++){ cout<<student[x].Yeartwo[i]<<"\t\t"; } cout<<"\n"; } //Deallocating All the used Array for(int x = 0; x < NoOfStudents; x++){ delete [] student[x].Yearone; delete [] student[x].Yeartwo; } cin>>pause; return 0; } This is just what I need. Jah bless you dear ...*hugs* |
Programming › Re: Someone Should Help Me Solve This C++ Question Please by Mizblinks(op): 7:11pm On Jun 10, 2016 |
hardebayho:
#include <iostream> using namespace std;
int main() { int scores[38]; cout << "Enter 38 scores, and press enter after entering each score" << endl; for(int x = 0; x < 38; x++){ cin >> scores[x] ; cout << "The entered scores are: " << scores[x] << endl; } }
Tell me if this does what you need. If it doesn't, then I still need more info Thanks a bunch, I will digest this later... |
Programming › Re: Someone Should Help Me Solve This C++ Question Please by Mizblinks(op): 9:17pm On Jun 09, 2016 |
hardebayho: Are you getting the scores from the keyboard or you're inputting it in the program? It's not that I want you to run the program, I want someone that can solve the question. e.g solving it this way. 1. # include <io stream> 2. using namespace std ; 3. main () 4. { 5. int scores ; 6. cout << "enter 38 scores" "/a" 7. for ( int, =0; < 38; ++ >; 8. (in >>, scores [ i ] 9. cin >> scores ( 300L > "endl" ; 10. cout << " the enter scores are //" < endl ; 11. return o; 12. } I know this is incorrect, but I want someone who can solve the question in this format. |
Programming › Re: Someone Should Help Me Solve This C++ Question Please by Mizblinks(op): 7:13pm On Jun 09, 2016 |
olarid01: Number of courses? of do you want it to be generalized? And what type of paradigm to use? POP or OOP? It's a sample question been asked by my lecturer, he didn't state if it is a POP or OOP, neither did he state the number of courses... |
Programming › Re: Someone Should Help Me Solve This C++ Question Please by Mizblinks(op): 7:09pm On Jun 09, 2016 |
hardebayho: Not enough information What information do you need please? |
Programming › Someone Should Help Me Solve This C++ Question Please by Mizblinks(op): 8:35am On Jun 09, 2016 |
I have test to write soon, I have been studying pretty well but I seems not be able to solve this question.
Write a program in c++ to get the scores of 38 student in 300L The program should compile the 2 years of the score and print it.
If you can solve the above question please help me do that. Thanking you in advance.. |
|
Romance › Re: Please Help Me: My Sister In-law Is Disturbing Me by Mizblinks(f): 1:51pm On Sep 02, 2015 |
cyprus000: [size=13pt][b] Let me tell you what a coded guy should do in this situation.
You uncle married a snitch who is a potential threat to his life. This woman can kill him just to be with a sugar boy(I lost two uncle this way).
Not only has she betrayed your uncle,but your family and her's.
Now this is what you do. I don't know how confident and stronge hearted you are,but a fearless man can face any situation.
Establish a sense of agreement btwn you two. Make he feel like you have soccumbd. Then meet your uncle one on one. Tell him whatsup and arrange how he will bump into you two almost on the act.
You know the rest na!..that woman don't deserve to be in your uncle's life.
ATTENTION: don't make it seem like you arranged with your uncle,cos she can come for your head . Except you balm physically and spiritual(you know what I mean,if you be coded)
With this. You have saved your uncle from early death,a snitch and the harsh pain of betrayal.
But if you don't love your uncle,leave and let him to his fate. NOTE: the thunder and lightening that will visit your destiny,is still receiving instructions from heaven.
If you leave without telling your uncle. You are same with her,cos you just betrayed your uncle.
Don't mind anything those sentimentally bais peeps tell you about leaving silently.
Use your head bruh. [/b][/size] A round of applause for this man please Another one Another one Another one Another one x 100. Thank you. *grin* |
Romance › Re: Call Or Text: Which Is The Best Medium To Ask A Girl Out? by Mizblinks(f): 1:31pm On Sep 02, 2015 |
Some ladies don't care which medium you use, that's if they're into you. As for me, I still prefer the physical medium tho. |
Romance › Re: CONFESSION: I Just Raped Her!!!! by Mizblinks(f): 1:23pm On Sep 02, 2015 |
Rapist. *angry* |
Romance › Re: Ladies: How Do You Feel When Guys Are Staring At Your Boobs by Mizblinks(f): 1:19pm On Sep 02, 2015 |
Feel comfortable don't feel comfortable, all depends on who's starring. |
Romance › Re: Who Is Your NL Crush? by Mizblinks(f): 6:25pm On Sep 01, 2015 |
faith551: Zahra buhari She's a nairalander ni  |
Nairaland General › Re: Welcome, New Nairalanders by Mizblinks(f): 2:42pm On Sep 01, 2015 |
Cutehector: be careful tho *smile* i will....thanks. |
Romance › Re: My Wannabe Celebrity (part 1) by Mizblinks(f): 2:39pm On Sep 01, 2015 |
Ehn eh. |
Nairaland General › Re: Welcome, New Nairalanders by Mizblinks(f): 2:35pm On Sep 01, 2015 |
Cutehector: yh Sure! Take my time last night to go round the site, it's been awesome so far....I must say, one can't feel bored down here. Nice site sha. |