| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 | 
|---|---|---|---|---|---|---|---|---|
| 135133 | 黄俊然 | 打印反直角三角形 | C++ | Accepted | 15 MS | 272 KB | 482 | 2025-11-02 16:31:47 | 
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int n; cin>>n; for(int i=n;i>=1;i--){ for(int j=i;j>1;j--){ cout<<" "; } for(int a=n;a>=i;a--){ cout<<"*"; } cout<<endl; } return 0; }