javascript--Cycle--print stars and 99 multiplication tables

Source: Internet
Author: User

1. Print 99 multiplication table

    function Chengfa () {        // repeatedly call formula for        (var r=1;r<=9;r++) {             for (var i=1,str= ""; i<=r;i++) {                str=str+ (i+ "x" +r+ "=" +i*r+ "\ T") ;            }            Console.log (str);        }    }    CHENGFA ();

2. Print Stars

   function Leftstar (l) {        for (var r=1;r<=l;r++) {            for (var i=1 , str= ""; i<=r;i++) {                str+ = "*";            }            Console.log (str);        }    }    Leftstar (5);

3. Print stars on the right

    function Rightstar (l) {        for (var r=1;r<=l;r++) {            for (var i= 1,str= ""; i<=l;i++) {                if(i<=l-r) {                    str+ = "";                } Else {                    str+ = "*";                }            } Console.log (str);        }    }    Rightstar (6);

4. Print Star Center

    function MidSTAR (l) {        for (var r=1;r<=l;r++) {            for (var i=1, Str= ""; i<=l+r-1;i++) {                if(i<=l-r) {                    str+ = "";                } Else {                    str+ = "*";                }            } Console.log (str);        }    }    MidSTAR (7);

javascript--Cycle--print stars and 99 multiplication tables

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.