10月10日 3

#include<iostream>
using namespace std;

int main(){
    int i,j;
    for(i=1;i<=10;i++){
        for(j=10;j>=i;j--){
        cout<<"*";
        }
        cout<<endl;
    } 
    
}

 

posted @ 2017-11-04 20:17  TOTO2  阅读(113)  评论(0编辑  收藏  举报