题解 | #直角三角形图案#
直角三角形图案
http://www.nowcoder.com/practice/00dd93f7c7074754b7511bf56d1f15ac
#include<iostream> using namespace std; int main() { int i; int j = 0; while(cin>>i) { for(int n = 1; n < i + 1; n++) { j = 0; while(j != n) { cout<<"* "; j++; } cout<<endl; } } return 0; }