₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,331,107 members, 8,448,698 topics. Date: Monday, 20 July 2026 at 05:25 PM

Toggle theme

Raynold's Posts

Nairaland ForumRaynold's ProfileRaynold's Posts

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

European Football (EPL, UEFA, La Liga)Re: Arsenal Fans Thread: The Red & White Army: 2025/2026 EPL Champions! by raynold(m): 4:03pm On Dec 14, 2013
LMAO...4LLER OOOO
ProgrammingRe: C++ Beginner Discussion Room: Drop Your Codes by raynold(m): 12:51pm On Dec 14, 2013
I kinda(not like a pro) knw c, c++ and java
I dislike arrays and pointers
ProgrammingRe: C++ Beginner Discussion Room: Drop Your Codes by raynold(m): 12:49pm On Dec 14, 2013
wrote this program in c and its working perfectly, just wrote this now in c++..

#include<iostream>

using namespace std;
int main()
{
int a, b, c, num;
int choice;
cout<< "\t\t\t welcom choose your operation\n";
for ( num = 1; num <= 7; num++)
{
cout<< "\t\t\t -1 addition\n \t\t\t -2 substraction\n \t\t\t -3 multipication\n";
cout<< "\t\t\t -4 exit\n ";
cin>> choice;
if (choice == 1)
{
cout<< "enter first value :";
cin>> a;
cout<< "enter second value :";
cin>> b;
c = a+b;
cout<< " addition is" << c<<endln;
}
if (choice == 2)
{
cout<< "enter first value :";
cin >> a;
cout<< "enter second value :";
cin >> b;
c = a - b;
cout<< " the subtraction is << c<<endln;
}
if (choice == 3)
{
cout<< "enter first value :";
cin>> a;
cout<< "enter second value :";
cin>> b;
c = a * b;
cout<< " the multiplication is << c<<endln;
}
if (choice == 4)
{
cout<< "\t\t\t thanks for using mini calcultor bye\n";
break;
}
if ( choice >= 5)
{
cout<< "\t\t\t invalid choice try again\n";
}
}
}
European Football (EPL, UEFA, La Liga)Re: Arsenal Fans Thread: The Red & White Army: 2025/2026 EPL Champions! by raynold(m): 7:17pm On Dec 11, 2013
vizman4i: Nelson Mandela (Madiba) was an Arsenal Fan....he respected The team...so All Arsenal fans should just have it In mind that we Had a Hero In africa...
tahhhh a Liverpool fan.. got a picture of him wearing a Liverpool top..
ProgrammingRe: C++ Beginner Discussion Room: Drop Your Codes by raynold(m): 7:06pm On Dec 11, 2013
Q3: Write a small calculator that
takes as input one of the four
arithmetic operations, the two
argument to those operation, and
then print out the result.
answer below..

please need you guys help
note : this C program allows user to chose from three(3) different arithmetic operators to solve a problem..
now the problem is the " invalid choice" keeps appearing after the program solves the problem.(program runs)
YOU CAN RUN THE PROGRAM SO YOU'LL SEE THE PROBLEM..


#include<stdio.h>
#include<stdlib.h>
main()
{
int a, b, c;
int choice;
printf ("\t\t\t choose operation\n" );
printf ("\t\t\t -1 addition\n \t\t\t -2 substraction\n \t\t\t -3 multipication\n" );
printf ("\t\t\t -4 exit\n " );
scanf ("%d",&choice);
if (choice == 1)
{
printf ("enter first value :" );
scanf ("%d", &a);
printf ("enter second value :" );
scanf ("%d",&b);
c = a+b;
printf (" addition is %d",c);
}
if (choice == 2)
{
printf ("enter first value :" );
scanf ("%d",&a);
printf ("enter second value :" );
scanf ("%d",&b);
c = a - b;
printf (" the subtraction is %d",c );
}
if (choice == 3)
{
printf ("enter first value :" );
scanf ("%d",&a);
printf ("enter second value :" );
scanf ("%d",&b);
c = a * b;
printf (" the multiplication is %d\n", c );
}
if (choice == 4)
{
printf ("\t\t\t thanks for using mini calcultor bye" );
}
else
{
printf ("\t\t\t invalid choice" );
}
}
ProgrammingRe: C++ Beginner Discussion Room: Drop Your Codes by raynold(m): 9:00am On Dec 11, 2013
adelolaa: Q3: Write a small calculator that takes as input one of the four arithmetic operations, the two argument to those operation, and then print out the result.
wrote a C program for this.. I'll try it in c++
ProgrammingRe: C++ Beginner Discussion Room: Drop Your Codes by raynold(m): 8:49am On Dec 11, 2013
adelolaa: /********************************

ASSIGNMENT: write a program that declares a class called "employee" with these data members: itsAge, itsYearsOfService, itsSalary.


HOD: Teach ur self c++ in 21days

STUDENT: Xarmzon.

********************-***********/
#include <iostream>
#include <cstdlib>
#include <cmath>
#include <string>
#include <ctime>

using namespace std;

class employee
{
public:
int getAge(){
return itsAge;
}
void setAge(int age){
itsAge = age;
}

int getYearsOfService(){
return itsYearsOfService;
}
void setYearsOfService(int yearsOfS){
itsYearsOfService = yearsOfS;
}

int getSalary(){
return itsSalary;
}
void setSalary(int salary){
itsSalary = salary;
}

private:

int itsAge;
int itsYearsOfService;
int itsSalary;


};

int main()
{
string name;
employee age;
age.setAge(20);
employee year;
year.setYearsOfService(6);

cout << "Enter your name: ";
getline (cin, name);

cout << name << " is "<< age.getAge() << " years of age and " << year.getYearsOfService() << " years of age in service." <<endl;


}
nice program but how do u go about a program that accept age and like increases every year( if possible)..
European Football (EPL, UEFA, La Liga)Re: Arsenal Fans Thread: The Red & White Army: 2025/2026 EPL Champions! by raynold(m): 8:17am On Dec 10, 2013
nawa o. last two season rvp carried you guys out of the relegation zone.. of all fans to call Liverpool a one man team, are arsenal fans.. I don suffer..
ProgrammingRe: C++ Beginner Discussion Room: Drop Your Codes by raynold(m): 8:04am On Dec 10, 2013
wisemania: bro c4droid isnt free in anyway...i tried numerous downloads bt dey kept on asking 4 me for my credit card details....anywaz ill av 2buy it ...al d xame ,thanks 4ur hlp thus far....
okay.. mine was free tho(playstore).. except the developer just made it a paid app.
European Football (EPL, UEFA, La Liga)Re: Arsenal Fans Thread: The Red & White Army: 2025/2026 EPL Champions! by raynold(m): 12:36am On Dec 09, 2013
Presbulg: For Liverpool to win or try and challenge, the MF has to be upgraded and the Defence needs to be Solid. Over reliance on SAS needs to be minimal too
sincerely we really don't have a scoring midfield like Chelsea anf arsenal even our wingers rarely score tho I see countinho always trying his best to change that when deployed as winger or num 10.. I'll be really happy if LFC can recall suso this boy is one amazing player u can ask barca... for the challenge of the title we'll know by the end of this month if the players are up for it...
European Football (EPL, UEFA, La Liga)Re: Arsenal Fans Thread: The Red & White Army: 2025/2026 EPL Champions! by raynold(m): 9:45pm On Dec 08, 2013
Presbulg: you say??
You no tell us say you wan sell Anfield stadium?

Tbh, his price has gone when he couldn't score against hull city and Bendtner did. grin
really? three hat-tricks against one team(only player to do so).. third highest top scorer in Europe top five league, let us not forget he missed the first five game..14 goals no pk, take away pk goals and he'll b at the top..
European Football (EPL, UEFA, La Liga)Re: Arsenal Fans Thread: The Red & White Army: 2025/2026 EPL Champions! by raynold(m): 9:38pm On Dec 08, 2013
Katsumoto: You are having hopes of winning the league? grin grin grin grin grin grin

That's not going to happen; don't let the first 10 laps in a marathon deceive you. The league is won by those teams with strength in dept. I can't see beyond Arsenal and Man city at the moment. Maybe chelsea if they get a decent striker in January. You can't win the league with an old Gerrard and a clueless Henderson playing every game. Let's get real.
European Football (EPL, UEFA, La Liga)Re: Arsenal Fans Thread: The Red & White Army: 2025/2026 EPL Champions! by raynold(m): 9:33pm On Dec 08, 2013
[quote author=Presbulg][/quote]sure every team want to win the league.. if arsenal have a shot at it well so do we.. our home form is terrific, we have scored the second highest amount of goals in the epl only second to man city.. our next four games will either bring us back to reality of just a top four finish or cement our place as a real title contender.. ynwa
European Football (EPL, UEFA, La Liga)Re: Arsenal Fans Thread: The Red & White Army: 2025/2026 EPL Champions! by raynold(m): 9:24pm On Dec 08, 2013
Presbulg: grin
wtf?? who wrote that trash?? well if u guys can give us ozil + ramsey + 50mil I guess u can have him.. tho we'll never sell to a rival..
European Football (EPL, UEFA, La Liga)Re: Arsenal Fans Thread: The Red & White Army: 2025/2026 EPL Champions! by raynold(m): 9:21pm On Dec 08, 2013
Katsumoto: Mate,

Lets not get ahead of ourselves. Spurs will be up for this game.

It all depends on what team Rodgers fields and the response of whoever comes in for Gerrard. If he plays Allen, Lucas, and Henderson, then we will lose the midfield battle and the game with it.

We can't expect Suarez to bail us out every game. He had a poor game against Hull and we lost. If he plays a blinder again, then we may win.
nahhh Suarez will definitely b up for this one... all I need is arsenal dropping more points(which is definitely certain)..
European Football (EPL, UEFA, La Liga)Re: Arsenal Fans Thread: The Red & White Army: 2025/2026 EPL Champions! by raynold(m): 9:09pm On Dec 08, 2013
4llerbuntu: haha. but u do know spurs gonna roll u guys over? u can bet ur mortgage on it, spuds gonna beat u.
Lmao u wish abi?? Suarez and sturidge(or should I say Sterling) alone has more goal than the whole spurs team.. Martin/Agger and sahko can easily handle the spurs forward line.. watch and see Suarez score a hat-trick..
European Football (EPL, UEFA, La Liga)Re: Arsenal Fans Thread: The Red & White Army: 2025/2026 EPL Champions! by raynold(m): 7:10pm On Dec 08, 2013
4llerbuntu: shiiiiiiit

that was a ROLLERCOASTER.

FOOOK ME. I actually started thinking we would lose. why did flamini not track that useless barca boy sef?

mehn. that ross barkley boy is a beast of a player.

when our goal came I nearly fainted. the relief was palpable. just had the suspicion everton would nick a late goal. which they did.


hands down everton is the form team In the league. not arsenal. ..... dont think any other team can play like that. away for that matter
4ller I don't think I can thank you guys enough for dropping 2point.. bring on spurs next weekend up Liverpool..ynwa
ProgrammingRe: C++ Beginner Discussion Room: Drop Your Codes by raynold(m): 1:02pm On Dec 08, 2013
wisemania: thanks,ill check it out 2nyt...
One more tin,did u also download gcc and sdl?
just gcc
ProgrammingRe: C++ Beginner Discussion Room: Drop Your Codes by raynold(m): 3:52pm On Dec 07, 2013
wisemania: was it free? If yes,whats d name and version of ur compiler?..waiting....
yes free.. c4droid I think it's the latest version since I haven't recieve any update notification since I downloaded it..
ProgrammingRe: C++ Beginner Discussion Room: Drop Your Codes by raynold(m): 1:38pm On Dec 07, 2013
wisemania: @op:
sorry,wher did u download ur c4droid 4rm, waz it free?,coz i waz asked to pay 4 mine...bt didnt....i had to download d online version,n its kilin my mb like kilode!...pls giv me a link to download d free offline version..thanks
downloaded mine from playstore and it's offline..
ProgrammingRe: C++ Beginner Discussion Room: Drop Your Codes by raynold(m): 1:37pm On Dec 07, 2013
wisemania: bro how du u make ur programs interactive using d c4droid compiler...
Coz i installed it yesterrday ran some codes on it,it ran perfectly well....but wen i tried makin it interactive using the input function ("scanf" for C-program and "cin" for c++ programs), the compiiler just ignored it like it waz neva there in my codes....d codes i ran could only print characters,i'd like u 2 explain in plain eng how u get 2 make ur own codes interactive using d "cin" command to read inputs from a user....*waiting patiently*
ur probably using the wrong compiler.. mine is working pretty well..
ProgrammingRe: C++ Beginner Discussion Room: Drop Your Codes by raynold(m): 10:12am On Dec 02, 2013
following.. also a beginner
PhonesRe: Android, Anyone? Part II by raynold(m): 8:58pm On Nov 27, 2013
4llerbuntu: my samsung mobile battery exploded in my pocket, burnt thru my trousers and boxers and gave me 1st degree burns on my body a few mins ago
sorry bro.. hope u r alright..
European Football (EPL, UEFA, La Liga)Re: Everton Vs Liverpool (3 - 3) On 23rd November 2013 by raynold(m): 2:36pm On Nov 23, 2013
Ht
European Football (EPL, UEFA, La Liga)Re: Everton Vs Liverpool (3 - 3) On 23rd November 2013 by raynold(m): 2:17pm On Nov 23, 2013
c'mon mighty reds..top of the league atm
European Football (EPL, UEFA, La Liga)Re: Everton Vs Liverpool (3 - 3) On 23rd November 2013 by raynold(m): 12:58pm On Nov 23, 2013
Confirmed # LFC team v @Everton :
Mignolet, Johnson, Flanagan, Agger,
Skrtel, Lucas, Gerrard, Allen,
Henderson,
Coutinho, Suarez
European Football (EPL, UEFA, La Liga)Re: Everton Vs Liverpool (3 - 3) On 23rd November 2013 by raynold(m): 11:59am On Nov 23, 2013
eve 0 LFC 2 (suarez, sturidge)
European Football (EPL, UEFA, La Liga)Re: Everton Vs Liverpool (3 - 3) On 23rd November 2013 by raynold(m): 11:57am On Nov 23, 2013
zhirinmai: hmmm...
sure win..
YNWA
European Football (EPL, UEFA, La Liga)Re: Liverpool FC Fan Zone: 20 Times Champions of England! by raynold(m): 7:29pm On Nov 11, 2013
am I the only one enjoying our position in the table? and d big possibility we'll be first by next week or middle of next month, considering our current form and the fact we will be playing well should I say "smaller" teams in our next 4 games..
European Football (EPL, UEFA, La Liga)Re: Liverpool FC Fan Zone: 20 Times Champions of England! by raynold(m): 7:17pm On Nov 11, 2013
usbcable: but chelsea has won the champions league before nah
how manyhuh just 1.. how many eplhuh
European Football (EPL, UEFA, La Liga)Re: Liverpool FC Fan Zone: 20 Times Champions of England! by raynold(m): 9:44pm On Nov 10, 2013
hurricaneChris: I don't reply post to an ass_nal fan. Infact any club from London, I don't reply their post. They're wankers looking for cheap popularity.

I only reply from Real Madrid, Bayern Munchen, Fc Barcelona, AC Milan, Ajax.
Those are the clubs in Liverpool category.

Not a yeye london club that hasn't been in d parade bus with champions league trophy bfo.
lmao.. no b small things o.. that academy club called arsenal. .
European Football (EPL, UEFA, La Liga)Re: Liverpool FC Fan Zone: 20 Times Champions of England! by raynold(m): 5:51pm On Nov 10, 2013
seriously tho.. this thread should be making all the noise after our great win yesterday.. c'mon lads

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