1 条题解

  • 0
    @ 2024-8-17 8:47:12
    #include<bits/stdc++.h>
    using namespace std;
    int x,p;
    int main(){
    	cin>>x;
    	for(int i=0;i<x;i++){
    		for(int j=0;j<x-i;j++){
    			p++;
    			printf("%02d",p);
    		}
    		cout<<'\n';
    	}
    	return 0;
    }
    
    • 1

    信息

    ID
    567
    时间
    1000ms
    内存
    256MiB
    难度
    10
    标签
    (无)
    递交数
    5
    已通过
    5
    上传者