<M/> 170 Why so serious? Featured Poster

nice, my sister is also a monkey :)

<M/> 170 Why so serious? Featured Poster

What was the most pain you have ever been through?

Physically or mentally...

For me it was when I was playing in the third game of the season in football, as a receiver I ran a few yards but got caught by 2 of their players which slowed me down because they had a hold of me... but then it got worse for me, 2 more players charged at me (one being my team mate trying to block one of them) and they both rammed into me hard, the opposing side rammed me somewhere in my upper body, i think it was my chest, (knocking off my helmet) and my partner that tried to stop him hit my abdomen really hard. I was out for the rest of the game (third quarter, 2 minute left).

But hey, at least it was a first down (I went 7 yards) and I had 2 touchdowns that game. Plus we won.

So anyways, what was the most pain you have faced.

<M/> 170 Why so serious? Featured Poster

It by my opinion is a "personality meter" also but sometimes it is nice to have the most endorsements that others don't recieve despite them always participating those specific forums...

<M/> 170 Why so serious? Featured Poster

What are some strange habbits that you guys have grown up with/developed? Most likely laziness for many...

For me: my habbits are low amounts of sleep and OCD for Perfection, very rarely is laziness...

How about you guys?

<M/> 170 Why so serious? Featured Poster

Will... there should be, despite this being more than 1 month old.

<M/> 170 Why so serious? Featured Poster

Actually... that was my next guess (not).

Your avatar doesn't make you seem as if your were born in the 50's...

I think people can guess mine (look at the cat)

<M/> 170 Why so serious? Featured Poster

Well... making a game on the app store is going to competitive. But if you want to make a game, try looking on the top charts for the app store. And what mobile device are you making this game on, so I can refer you to some tutorials

<M/> 170 Why so serious? Featured Poster

You got endorsed for c++ because you have had some posts there, and people (I being one of them) have decided to endorse you.

<M/> 170 Why so serious? Featured Poster

people just endorse people if they want to. it is like people giving you money even though you don't why you are receiving it.

<M/> 170 Why so serious? Featured Poster

Well... Checkzer, this post has been around for 2 years and I am assuming the OP has already been addicted to some game by now...

tux4life commented: Hehe :) +0
abcdzyx commented: ha +0
cproger commented: ha +0
<M/> 170 Why so serious? Featured Poster

This maybe a stupid question (but this the main reason why I watch this sport on youtube) but what was the best injury so far...?

<M/> 170 Why so serious? Featured Poster

Hmmmm... that band has been around since 72... were you born on 1972?

<M/> 170 Why so serious? Featured Poster

Good explanation on why videos are not the best way to learn!

<M/> 170 Why so serious? Featured Poster

Hmmmm... I am now guessing you were born in the early 60's?

<M/> 170 Why so serious? Featured Poster

Is this what you are refering to:

 int myNumber;
            String input;
            do
            {
                Console.Write("Enter a number : ");
                input = Console.ReadLine();
            } 
            while (Int32.TryParse(input, out myNumber) == false);

            double[] answer = new double[mynumber]; 
            for (int i = 0; i < answer.Length; i++)
            {
                answer[i] = Convert.ToDouble(Console.ReadLine());
            }
            Console.WriteLine("output is :");
            for (int i = 0; i < answer.Length; i++)
            {
                Console.WriteLine(answer[i]);
            }
            Console.ReadLine();

I still can't collect numbers. It seems to skip the entire code until it reaches line 10.

<M/> 170 Why so serious? Featured Poster

I tried to end a program by using this, it doesn't work

 double[] answer = new double[15];
            for (int b = 0; b < answer.Length; b++)
            {
                answer[b] = Convert.ToDouble(Console.ReadLine());
            }
            Console.WriteLine("Inputs: ");
            for (int b = 0; b < answer.Length; b++)
            {
                Console.WriteLine(answer[b]);
                if (b = "stop")
                {
                    Environment.Exit();
                }
            }
            Console.ReadLine();
<M/> 170 Why so serious? Featured Poster

um... that wasn't the right answer to the question... The question was what your favorite school subject. Unless you had a sims class with a teacher named ArcheAge.

Anyways, lets skip that question...

What is your favorite type of hand watches? (bet you guys are going to say rolex)

<M/> 170 Why so serious? Featured Poster

okay so how do combine that into this code:

        static void Main(string[] args)
        {
            double[] answer = new double[15];
            for (int i = 0; i < answer.Length; i++)
            {
                answer[i] =Convert.ToDouble(Console.ReadLine());
            }
            Console.WriteLine("output is :");
            for (int i = 0; i < answer.Length; i++)
            {
                Console.WriteLine(answer[i]);
            }
            Console.ReadLine();
        }

I got an error from trying to combine your source. for some odd reason, VS gave me an error saying that I can't change answer.Length into input.

<M/> 170 Why so serious? Featured Poster

989 again!

<M/> 170 Why so serious? Featured Poster

I am also looking into Destiny... a new game by bungie for the ps system.

<M/> 170 Why so serious? Featured Poster

I am looking into "deep down" and "watchdogs".... also the new killzone.

<M/> 170 Why so serious? Featured Poster

and

<M/> 170 Why so serious? Featured Poster

Oh, I thought HappyGeek created this thread on the very first game ;)

<M/> 170 Why so serious? Featured Poster

Yes, some people would use videos (I personally don't use them as often). But I prefer youtube and Lynda.com if you are looking for videos.

<M/> 170 Why so serious? Featured Poster

Okay so for the double one, I tried to make a custom array size, sorry it was the best that I can call it. Basically what I am trying to do for the double array is to make the size of whatever the user wants.

So I tried to collect the size and it doesn't work.

 int dNumber = 0.0;
            Console.WriteLine("Type a number.");
            line = Console.ReadLine();
            dNumber = int.Parse(line);
            int.TryParse(line, out dNumber);

I was using the above to collect the number to change the size of the array ( I hope I didn't paste the wrong one ).

Also, how do I apply an if statement to the string one, so in any case, if I input the word dog, the program would stop. I am currently beating myself on this one.

Sorry for the many questions, the last 2 arrays are not homework (the integer one was), I am just learning some techniques with arrays. But thanks for helping me as of so far.

<M/> 170 Why so serious? Featured Poster

Oh... so I see where I was making my mistakes. I was making my mistakes on line 6. I kept it similar to the one for integers.

<M/> 170 Why so serious? Featured Poster

Quick question, I have tried using your code for strings. It didn't work and I couldn't get it to work with Doubles either.

I switched the int into strings/double.

<M/> 170 Why so serious? Featured Poster

2 and half months! Boy this thread is going to get big...

<M/> 170 Why so serious? Featured Poster

That was funny but apple is still better.

<M/> 170 Why so serious? Featured Poster

I understand that part... i just don't know the rules ;)

<M/> 170 Why so serious? Featured Poster

Let me guess, you were born in the late 80's? or mid 70's?

<M/> 170 Why so serious? Featured Poster

What if you were stuck in a deep hole with no sun light... how would a mirror help if that was the situation.

<M/> 170 Why so serious? Featured Poster

Drugs and alcohol are one of the main reasons why younger people are screwed and die early.

<M/> 170 Why so serious? Featured Poster

Tin Tin was a pretty good film but Hansel & Gretel was awful...

<M/> 170 Why so serious? Featured Poster

Canada or Mexico can spend that much money and not get any results

Or most third party countries.

<M/> 170 Why so serious? Featured Poster

But that will never happend.

Of course... it most likely will never happen but it kind of shows that people don't care about living a longer and happier life.

<M/> 170 Why so serious? Featured Poster

Boy... electing bush was a bad idea after all if that was the case...

<M/> 170 Why so serious? Featured Poster

I also believe the same with smoking.

<M/> 170 Why so serious? Featured Poster

Think about it, most people that get in trouble for being a drunk are normally 30 or younger. So, anyone here want to make it official on paper and send it to the branches of government to make it a new law?

<M/> 170 Why so serious? Featured Poster

Good ways to learn java is to: practice reading and writing codes, read books, and take classes. Also ask questions in between each one.

abcdzyx commented: exactly +0
<M/> 170 Why so serious? Featured Poster

Also, you can get arrested for being a drunk and get arrested for owning a bear.

abcdzyx commented: haha +0
<M/> 170 Why so serious? Featured Poster

I have seen a few of my posts with 0 upvotes/down votes. And I have also seen that I can't give points on my ipad...

<M/> 170 Why so serious? Featured Poster

Wait... so who is looking for the learning, you or us? You first worded it as if you were a student but then ended it as if you were an actual java programmer. I am a bit lost.

<M/> 170 Why so serious? Featured Poster

If you were stuck on an island, what 5 things would you bring with you?

I would bring:
- food
- equipment to hunt with/make shelter with
- compass
- a dog (my dog, despite it weight a bit more than 5 lbs)
- and a way back home.

How about you guys?

<M/> 170 Why so serious? Featured Poster

Many say they are born the year of some animal. In the Chinese zodiac, what was the animal that represented your year?

For me: The Tiger

You guys?

<M/> 170 Why so serious? Featured Poster

When was the time when your body looked the best? And who's body did you match up with?

When: Right Now.
Who: I look like a mix of Terrell Owens (the guy who is now broke) and Garvin (the one who played for the Cardinals).

If you were wondering, I weigh about 193 Lbs and am 6'ft something. (I seem to tower my brother even more so I think I am either 6' or 6'1/6'1.5...). I am not fat if you are wonderring. People assume I am not over 190 lbs. They think I am in the 170's.

So how about you guys, what do/did you guys resemble?

<M/> 170 Why so serious? Featured Poster

Programming is something I am into a lot! It is another skill I am developing to get into a good school.

It makes my application look better by the time I become a senior in highschool.

Lets see what I got as a highschool freshman:

  • Computers: HTML, CSS, PHP, MySQL, C#, Java, JavaScript, jQuery, Visual Basic

  • Sports: Varsity Track & Field, I got admitted into Varsity Basketball for next year, Varsity Football for next year.

  • Business: Stock Trader, Currency Trader

  • School: Straight A's in all 7 classes.

See how much better my application looks with computers in it? So at the time it is a passion that I am developing with intensity trying to make each day I practice it a masterpiece.

<M/> 170 Why so serious? Featured Poster

iPhone... hands down! Android sucks by my opinion but iPhones are going through a hard and challenging war with Samsung.

<M/> 170 Why so serious? Featured Poster

Beckham was traded to Real Madrid for quite a while and then he went onto the Galaxy team. I heard he got traded again for 2013. But who cares, he is just a good player that makes a good amount of money modeling and soccer playing.

But anyways... lets get back to rugby (which i still don't understand, but some what like to watch clips of it on youtube)!

<M/> 170 Why so serious? Featured Poster

Anyone here going to watch "Oz the great and Powerful", "G.I.Joe Retaliation", "Fast & Furious", "Into the Darkness", the new x-men with wolverine?

I know I am going to watch all of them, how about you guys?