C++ examples for Statement:for
Drawing Patterns with Nested for Loops 4
pattern * ** *** **** *****
#include <iostream> int main(int argc, const char *argv[]) { for (int i = 1; i <= 10; i++) { for (int j = 10; j >= 1; j--) { std::cout << ((j <= i) ? '*' : ' '); }/*from w ww . j ava2s .c om*/ std::cout << std::endl; } return 0; }