倒三角算法

Posted nk-007

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了倒三角算法相关的知识,希望对你有一定的参考价值。

刷题ing,碰到这么一个经典习题。知道是个for循环,想着能不能用while做出来,越想越困,算了,还是for吧。。。

#include <stdio.h>
#include "stdafx.h"
#include <iostream>
#include<time.h>
using std::cin;
using std::cout;
int main() {
    int n;
    cout << "Please enter a number less than 21:" << std::endl;
    cin >> n;
    if (0 <= n && n <= 20) {
        for (int i = 1; i <= n; i++) {
            for (int j = 1; j < i; j++) {
                cout << " ";
            }
            for (int k = i; k <= 2 * n - i; k++) {
                cout << "*";
            }
            cout << std::endl;
        }
    }
    else
        cout << "The number is wrong!!!" << std::endl;
}

 

 

有些头文件是做别的题遗留下来的,请勿见怪~~
























以上是关于倒三角算法的主要内容,如果未能解决你的问题,请参考以下文章

平面中判断点在三角形内算法(重心法)

三角测量 3D 算法

空间中判断点在三角形内算法(方程法)

算法训练 数字三角形

三角函数的算法公式。

flink 实现三角枚举EnumTriangles算法详解