Techno Life, Micromax New Version Official Firmware, Winmax official firmware, Nokia Flash File, WhatsApp Messenger, Lenovo, huawei, xiaomi, samsung galaxy

Cari Blog Ini

Diberdayakan oleh Blogger.
Minggu, 16 Desember 2012

Tcl and OTcl Tutorial for NS2 - Program to find Factorial

Tcl and OTcl Tutorial for NS2 - Program to find Factorial - these days more and more blogs that talk about technology, including blogs Techno Life but we are very experienced in this case because we have been there from a few years ago always present information about techno for you, well now we are about Tcl and OTcl Tutorial for NS2 - Program to find Factorial hopefully the information we will convey can answer your question to google, please see:

Articles : Tcl and OTcl Tutorial for NS2 - Program to find Factorial
full Link : Tcl and OTcl Tutorial for NS2 - Program to find Factorial

You can also see our article on:


    Tcl and OTcl Tutorial for NS2 - Program to find Factorial



     Fractorial Computation: tcl script to obtain the value of 10! = 10 * 9 * ... * 1.

    1. get  http://lifeandeating.blogspot.com /" rel="nofollow" target="_blank">factorial.tcl and run the script;
    2. write a function to compute 2^x, test your answer.
    Execute the script as:

    $ tclsh lab1a.tcl
    or
    $ ns lab1a.tcl



    ################################################################################


    #filename : factorial.tcl
    # define function to compute Factorial X!
    proc Factorial {x} {
        # define variable
        set result 1
       
        # for loop
        for {set i 1} {$i <= $x} {incr i} {
    set result [expr $result * $i]
        }
       
        # return computation result
        return $result
    }


    #############################################################################


    # define function to compute 2^x
    proc 2pow {x} {
        # define variable
        set result 1
       
        # for loop
        for {set i 1} {$i <= $x} {incr i} {
    # fill in here
        }
       
        # return computation result
        return $result
    }
    # make function call
    set result [Factorial 10]

    # output result
    puts "$result"

    # make function call
    set result [2pow 10]

    # output result
    puts "$result"



    information Tcl and OTcl Tutorial for NS2 - Program to find Factorial has been discussed

    hopefully the meaning of Tcl and OTcl Tutorial for NS2 - Program to find Factorial that we write can be useful for you in adding insight about gadgets.

    you just finished reading the article titled Tcl and OTcl Tutorial for NS2 - Program to find Factorial if you want to bookmark or share your links use the link https://lifeandeating.blogspot.com/2012/12/tcl-and-otcl-tutorial-for-ns2-program.html do not forget to go back to this blog if you want to get the latest information about gadgets.

    Tag :
    Share on Facebook
    Share on Twitter
    Share on Google+
    Tags :

    Related : Tcl and OTcl Tutorial for NS2 - Program to find Factorial

      0 komentar:

      Posting Komentar