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;
    } 
    
}
原文地址:https://www.cnblogs.com/aipopo/p/7784445.html