16 条题解

  • 1
    @ 2022-12-5 16:35:20
    #include<iostream>
    #include<iomanip>
    using namespace std;
    int main(){
    	int n;
    	cin>>n;
    	for(int i=n;i>=1;i--){
    		for(int j=i-1;j>=1;j--){
    			cout<<" "; 
    		}
    		for(int h=1;h<=n;h++){
    			cout<<"@";
    		}
    		cout<<endl;
    	} 
    }
    

    信息

    ID
    955
    时间
    1000ms
    内存
    128MiB
    难度
    5
    标签
    递交数
    709
    已通过
    278
    上传者