Well.... not necessary on my own but with a great helps from youtube.com and w3schools.com.
I'm going to learn all the knowledge i got from these two great webs... why it is a great web.. becoz its free.... yea right... i have to pay for the internet line every month... so it is not really free...
But it is time for me to LEARN something good from the Internet and not just downloading movies and games... (FYI : I dun like facebook.. aside for all the news i can get there)
Something that i need to remember when i learns this codes ;
Looping
For (credited to http://www.daniweb.com/)
for(int i =0 ; i <counter ; i++)
{
//array is suitable for for loop becoz you can sort array data with it...
int[] data;
Console.WriteLine("Read integer data : ");
data[i] = int.Parse(Console.ReadLine()); //Cannot read data integer directly... you need to convert to int
// break; used to get out from loop
// continue; used to skip a loop
}
No comments:
Post a Comment