东方博宜 1782. 打印字符图形2-星号倒直角
#include <iostream>
using namespace std;
int main()
{
int n , i , j ,t;
cin >> n ;
t = n ;
for(i = 0 ; i <= n-1 ; i++)
{
for(j = 1 ; j<= n -i ; j++)
cout << "*" ;
cout << endl ;
}
return 0 ;
}