Very First C Programming Challenge!
Sorry but youtube wont let me copy the code in here! You have to type it in yourself, or you can message me your e-mail and I will email the code to you. Good luck everyone! I am looking forward to your answers!
Sorry but youtube wont let me copy the code in here! You have to type it in yourself, or you can message me your e-mail and I will email the code to you. Good luck everyone! I am looking forward to your answers!
Powered by Yahoo! Answers
December 8, 2010
12:38 pm
there is a way more easier way using “for loop, if statement, and while loop”
i
December 8, 2010
12:49 pm
@thenewboston i finally got the answer…(and no i din’t look up any of the comments for help).
December 8, 2010
12:54 pm
canan-dk-2007@hotmail.com
December 8, 2010
1:39 pm
how to send the code???
December 8, 2010
2:17 pm
just add if(two ==0){printf(” “)}
December 8, 2010
2:28 pm
if((two%2)==0) printf(” “);
December 8, 2010
2:44 pm
Sorry for the spoil, But i need to show you guys that I’m smart:
if (!two) printf(” “);
December 8, 2010
3:43 pm
I didn’t realize b was backspace, otherwise I would have gotten it
December 8, 2010
4:40 pm
mmm i just tried to do this and i got it BUT in a different way, i guess mine is the noob way xD.
i’m just starting
December 8, 2010
5:23 pm
if(two!=1) //Juhuuu!!!!!!
December 8, 2010
5:57 pm
if(two==0) {printf(” “);}
December 8, 2010
6:29 pm
Use the escape sequence b (backspace)
December 8, 2010
6:58 pm
…
printf(“n”);
if (!two)
printf(” “);
…
December 8, 2010
7:06 pm
printf(“b”); // After the second while loop
December 8, 2010
7:13 pm
I used printf(r);
December 8, 2010
7:32 pm
@thenewboston printf(“b”); in the third loop.!!!!
December 8, 2010
7:42 pm
printf(“b”);
two=0;
three++;
December 8, 2010
8:13 pm
gottcha!!! printf(“b”); in third loop.
December 8, 2010
9:08 pm
i got it by using
if(two==0)
December 8, 2010
9:32 pm
i got it by using
if(two==0)
December 8, 2010
10:16 pm
I found out within 15 minutes using the flow of execution feature in Visual Studio.
Fun challenge!!!!!!!!
December 8, 2010
10:17 pm
Please upload more videos on C tutorials….
You are the best…
December 8, 2010
10:34 pm
Please upload more C tutorials…. You are the best…
December 8, 2010
11:14 pm
I KNOW THE ANSWER ^^ ITS SIMPLE….^^
December 8, 2010
11:36 pm
That was pretty easy if you know some basic stuff about C.