top of page

Class three of C# training

  • Sheng hao Wang
  • May 3, 2016
  • 1 min read

So the first two day of C# Class pretty much covers the very basic, after all this class is design for the ground up. But today we are dealing in to statements in programming language, which we actually need to use our brain in class.

I used statement in MEL script before like:

if

{

}

else

{

}

and a little bit of while loop.

while ()

{

}

However I never really use statement in nest loop like:

for ( ; ; )

{

for ( ; ; )

{

}

}

or do loop before.

do

{

} while()

During the class we use the statements we learned and trying to apply it to build things such as print out adding all the number from 1 to 100 or build the math multiplication table. Well all these exercises are brain stimulating, so I guess it is preparing us for the difficult challenges ahead of us.

Comments


Featured Posts
Recent Posts
Archive
Search By Tags
Follow Us
  • Facebook Basic Square
  • Twitter Basic Square
  • Google+ Basic Square
bottom of page