Forum: C++ 8 Hours Ago |
| Replies: 8 Views: 67 Since "I started learning C++ November 14th 09!!"
Then I would suggest to keep learning it more a while. |
Forum: Geeks' Lounge 4 Days Ago |
| Replies: 16 Views: 703 [/QUOTE]
Cool we have so much in common. Only if you were a girl. |
Forum: Geeks' Lounge 21 Days Ago |
| Replies: 21 Views: 943 If yu wer strnded in a is_land ten wat wud u brin , u gt at mst fiv tings and no triky buzzness, understand?
I would bring (1)Angelina Jolie, then my (2)laptop (with infinite battery life,
that... |
Forum: C++ 29 Days Ago |
| Replies: 7 Views: 371 |
Forum: Geeks' Lounge Nov 2nd, 2009 |
| Replies: 5 Views: 336 Have you ever seen a starving kid in places like Africa? It changes your
whole outlook in life. I bet you take even tap water for granted. You
have no idea how it feels like to be "poor". And... |
Forum: Geeks' Lounge Nov 2nd, 2009 |
| Replies: 5 Views: 336 More bullshit, what does it really matter?
A new Missing Link (http://news.nationalgeographic.com/news/2009/10/091001-oldest-human-skeleton-ardi-missing-link-chimps-ardipithecus-ramidus.html) has... |
Forum: C++ Oct 24th, 2009 |
| Replies: 12 Views: 314 Whats up with the attitude? I tried to help, but instead you insist that you are an *******.
Its a pointer to a int, in which the int is a reference to another variable, thus it follows that p... |
Forum: C++ Oct 24th, 2009 |
| Replies: 12 Views: 314 Your words are misleading because a pointer-to-a-reference means
int a = 3;
int &r = a;
int *p = &r; //a pointer to a reference
what you really mean : |
Forum: C++ Oct 18th, 2009 |
| Replies: 2 Views: 218 >>1. text pre-processor ( convert .doc to .txt)
When you load in a doc file, you will also load in its formatting and other extra stuff. You need to weed that out.
>>2. Sentence separator
A... |
Forum: C Oct 16th, 2009 |
| Replies: 5 Views: 291 Haven't tested it yet, but it could be similar to this :
int M = 5;
int i = 1;
while(i <= M) cout << i++ <<" "; //print from 1 to 5
while(--i > 0) cout << i << " "; //print from 4 to 1 |
Forum: C++ Oct 16th, 2009 |
| Replies: 2 Views: 311 suggestion : if you are a beginner, then forget about graphics stuff.
You need to learn a language well before you can move on.
suggestion : You might want to use Java. There are plenty of GUI... |
Forum: Java Oct 4th, 2009 |
| Replies: 13 Views: 555 Make use of functions. Try something like this
import java.util.Random;
class Main
{
static Random rand = new Random();
static void Print(Object ob){ |
Forum: Java Oct 4th, 2009 |
| Replies: 13 Views: 555 It would help if you created a few function that returns either
lowercase, uppercase , number or a punctuations.
The in your randomLowercase(int len) function you can something like
for(int i =... |
Forum: Java Oct 4th, 2009 |
| Replies: 11 Views: 397 You could sort it and then check if the next element is the same and
work from there. |
Forum: Java Oct 3rd, 2009 |
| Replies: 11 Views: 397 It works for me :
import java.*;
class Main
{
static void Print(Object ob){
System.out.print(ob);
} |
Forum: Java Oct 3rd, 2009 |
| Replies: 11 Views: 397 |
Forum: C++ Oct 3rd, 2009 |
| Replies: 7 Views: 416 |
Forum: Java Oct 2nd, 2009 |
| Replies: 4 Views: 365 for(int i = 1; i <= 10; i++)
{
for(int j = 1; i <= i; j++)
System.print(j);
System.println();
} |
Forum: Computer Science Sep 25th, 2009 |
| Replies: 12 Views: 1,134 Although realize, that you can take certain courses thats not in your major.
So you can take certain courses, thats related to computers, but is not
in your major. |
Forum: C Aug 29th, 2009 |
| Replies: 19 Views: 994 |
Forum: C++ Aug 9th, 2009 |
| Replies: 7 Views: 525 I can revive it once a while. |
Forum: C++ Aug 8th, 2009 |
| Replies: 7 Views: 525 Because a title named Cool New Game must See!! is more
catching than Thread Rules or something similar. |
Forum: C++ Aug 1st, 2009 |
| Replies: 5 Views: 195 Lets see what you are doing :
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
int a, result, factorial(a); //declare 'a' as an int |
Forum: Game Development Jul 20th, 2009 |
| Replies: 10 Views: 664 //Are used to determine if certain settings are enabled/disabled
//0->disabled
//1->enabled
"static int useRGB = 1;
static int useLighting = 1;
static int useFog = 0;
static int useDB = 1;... |
Forum: C++ Jan 9th, 2009 |
| Replies: 13 Views: 780 first off iostream.h is not standard so dont bother using it. use
#include<iostream> instead.
to solve your problem try doing this :
#include<iostream>
using namespace std; //important.... |