IRC Channel: #rtcw.wars

InvisionFree - Free Forum Hosting
Join the millions that use us for their forum communities. Create your own forum today.

Learn More · Sign-up for Free
Welcome to WolfMP Forum. We hope you enjoy your visit.
You're currently viewing our forum as a guest. This means you are limited to certain areas of the board and there are some features you can't use. If you join our community, you'll be able to access member-only sections, and use many member-only features such as customizing your profile, sending personal messages, and voting in polls. Registration is simple, fast, and completely free.
Join our community!
If you're already a member please log in to your account to access all of our features:

Name:   Password:

This forum has moved to http://www.wolfmp.com/forum/


Pages: (3) [1] 2 3  ( Go to first unread post )

 Feel Free to Ask!
.:ReyMysterio:.
  Posted: Apr 7 2012, 11:47 AM


Unregistered









HEllo! smile.gif

i think ( i,m a thinkfull man and its the reason of why many of my Phrases start with" i think " loool ) we can have a free Section to can ask about anything , we have an International communications here on forum , and experience is not just on our Game , Experience is for our hole life & we can share it with friends!

we can have this section to ask about anything that we need in life , i know something that you dont know and you know something that i dont know!

maybe you want to know:

i want to buy new Laptop that have very good speackers?

how can wash my monitor?

what sports good for heart?

how can fell somebody in my love? laugh.gif

anybody can solve this math question for me?

where is good for tourism travel?

.........


My means is just fell freeeeeeeee to ask , maybe somebody here know more and help you! cool.gif
.:ReyMysterio:.
Posted: Apr 7 2012, 12:09 PM


Unregistered









gatcha!

First Question is a Camputer Engeener Problem with C++ Program. cool.gif

i want to build a 5*5 Multiplication table just with "for" command, i,m already build a 10*10 :

QUOTE


#include <iostream.h>
#include <iomanip>
#include <conio.h>

int main()
{
int i,j;
for(i=1;i<=10;i++)
{
  for(j=1;j<=10;j++)
  cout<<i*j<<"\t";
}
getch();
return 0;
}




and out pannel is:

user posted image

but how i can build 5*5?

changing 10 to 5 for i & j dont solving the problem.
pinkfloyd
Posted: Apr 7 2012, 01:02 PM


Unregistered









Rey, try this

01 #include<iostream>
02 #include<conio.h>
03 using namespace std;
04
05 int x, y;
06
07 main()
08 {
09 for (x=1; x<=5; x++)
10 {
11 for (y=1; y<=5; y++)
12 cout<< x * y <<"\t";
13 }
14 getch();
15 }

Now remove the conio.h and replace getch() with cin.get()

http://www.dreamincode.net/forums/topic/21...lication-table/
.:ReyMysterio:.
Posted: Apr 7 2012, 02:50 PM


Unregistered









QUOTE (pinkfloyd @ Apr 7 2012, 04:32 PM)
Rey, try this

01 #include<iostream>
02 #include<conio.h>
03 using namespace std;
04
05 int x, y;
06
07 main()
08 {
09 for (x=1; x<=5; x++)
10 {
11 for (y=1; y<=5; y++)
12 cout<< x * y <<"\t";
13 }
14 getch();
15 }

Now remove the conio.h and replace getch() with cin.get()

http://www.dreamincode.net/forums/topic/21...lication-table/

the problem is not for conio.h and getch() , they just keep result on outpage , the problem must be something Instead of "\t" , something like setw...

btw thanks for finding that for me. smile.gif
.:ReyMysterio:.
Posted: Apr 7 2012, 03:18 PM


Unregistered









well i found my answer:


QUOTE


#include<iostream.h>
#include<conio.h>
int main()
{
int i,j;

for(i=1;i<=5;i++)
{
    cout<<"\n";
        for(j=1;j<=5;j++)
                cout <<i*j<<"\t";
}
getch();
return 0;
}




cool.gif

user posted image
pinkfloyd
Posted: Apr 7 2012, 03:30 PM


Unregistered









Very interesting...you got me reading about a few C++ commands...smile.gif

setw controls the width of the columns, I think from what I read....how that should change the table into 5x5?

What I think has happened is you started by a 10x10 one and when changed the x, y to 5 you still get a display of 10...

Can you start another file under a different name with 5 as values of x and y, then see what happens?
blink.gif
pinkfloyd
Posted: Apr 7 2012, 03:35 PM


Unregistered









QUOTE (.:ReyMysterio:. @ Apr 7 2012, 04:18 PM)
well i found my answer:


QUOTE


#include<iostream.h>
#include<conio.h>
int main()
{
int i,j;

for(i=1;i<=5;i++)
{
    cout<<"\n";
        for(j=1;j<=5;j++)
                cout <<i*j<<"\t";
}
getch();
return 0;
}




cool.gif

user posted image

Yeah..Rey rocks!!!!!

hardrock.gif hardrock.gif
.:ReyMysterio:.
Posted: Apr 17 2012, 01:28 PM


Unregistered









Can i have an internet line from Germany?

i dont Care of money just want know its possible or not.

Can a German friend ask from an ISP on there?
SERBIA KOKOS
Posted: Apr 17 2012, 05:12 PM


Unregistered









QUOTE (.:ReyMysterio:. @ Apr 7 2012, 11:47 AM)
HEllo! smile.gif

i think ( i,m a thinkfull man and its the reason of why many of my Phrases start with" i think " loool ) we can have a free Section to can ask about anything , we have an International communications here on forum , and experience is not just on our Game , Experience is for our hole life & we can share it with friends!

we can have this section to ask about anything that we need in life , i know something that you dont know and you know something that i dont know!

maybe you want to know:

i want to buy new Laptop that have very good speackers?

how can wash my monitor?

what sports good for heart?

how can fell somebody in my love? laugh.gif

anybody can solve this math question for me?

where is good for tourism travel?

.........


My means is just fell freeeeeeeee to ask , maybe somebody here know more and help you! cool.gif

How can you wash ur monitor,simply throw it in river and take after 2 days.
Sport good for heart is Mountineering : )
How can you make somebody fall in love with you,hit her with a rock in head and drag into cave : P
Where is good for turism? Visit real castle wolfenstein xD

KOKOS tongue.gif
pinkfloyd
Posted: Apr 17 2012, 05:25 PM


Unregistered









@Ivane: some answers for yourr Q's are there on goolgle, but they are mostly stupid and not practical....

How to clean a monitor? Best and cheapest way is to cough some beer to it, then wipe it clean with some kleenex. Ofc there are some professional cleaners, but beer works bes.

It will shine for some long time.
Reason is? Beer has some mild alcohol, which is perfect for cleaning any type of monitor. A can of Heinken 3-5 percent will do it, but best cleaner is Meister Max 8% cans. Alcohol percentage is just the right thing.

Remeber: do not pour the can over the monitor, just have a mouthfull and spray some on the monitor. I've just cleaned mine, that way ....

Enjoy smile.gif
.:ReyMysterio:.
  Posted: Apr 28 2012, 06:29 AM


Unregistered









Why when a player on empty beach try to do record breaking everybody that see him think this is a funny job to go and kill him? dry.gif
pinkfloyd
Posted: Apr 28 2012, 06:39 AM


Unregistered









Rey, some players are turned on just seeing a head smile.gif
pinkfloyd
Posted: Apr 29 2012, 10:19 AM


Unregistered









how to include an ip in a demo and how can anybody see the ip when any click will pause the demo?

\get what???

\-scores???

GrofvonPicmal
Posted: Apr 29 2012, 10:31 AM


Unregistered









QUOTE (pinkfloyd @ Apr 29 2012, 10:19 AM)
how to include an ip in a demo and how can anybody see the ip when any click will pause the demo?

\get what???

\-scores???

The one who's making demo,should do /getstatus in game,so viewers can see IP's of targeted player,otherwise,I think is not posible to see it.Or maybe I'm wrong unsure.gif
pinkfloyd
Posted: Apr 29 2012, 11:30 AM


Unregistered









Thanks to Grof...

\getstatus........I forgoat that command .

How to see an ip when a friend who demo it says ip in demo???

any click or kb press will stop demo???


.

ohmy.gif
DealsFor.me - The best sales, coupons, and discounts for you

Pages: (3) [1] 2 3 



Hosted for free by InvisionFree* (Terms of Use: Updated 2/10/2010) | Powered by Invision Power Board v1.3 Final © 2003 IPS, Inc.
Page creation time: 0.2866 seconds | Archive