C Language Implementation on-screen output Yang Hui triangle

Source: Internet
Author: User

★ Print Yang Hui triangle on screen

#include <stdio.h>int main () {int i = 0, j = 0, num = 0,k = 0;printf ("Enter the number of rows to output for the Yang Hui triangle:"); scanf ("%d", &num); for (i = 1; I <= num;         i++) {k = 1; Each line must start with 1, so the k is defined beyond the second loop for (j = 1; J <= I; j + +) {printf ("%5d", k); k = k* (i-j)/J;} printf ("\ n");} return 0;}

Note: If you are concerned about an overflow in the number of rows you enter, you can define its integer type as a long shaping

650) this.width=650; "src=" Http://s3.51cto.com/wyfs02/M00/74/80/wKioL1YfaTLhPVxMAADMKXRDTTM645.jpg "title=" Run Result " alt= "Wkiol1yfatlhpvxmaadmkxrdttm645.jpg"/>

This article is from the "Warm Smile" blog, please be sure to keep this source http://10738469.blog.51cto.com/10728469/1703271

C Language Implementation on-screen output Yang Hui triangle

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.