Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
20642 石利伟 星号等腰三角形 C++ 通过 100 0 MS 244 KB 287 2021-06-19 16:41:34

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int main(){ int i,o,p,a; cin>>a; for(i=1;i<=a;i++){ for(o=a;o>i;o--){ cout<<" "; } for(p=0;p<2*i-1;p++){ cout<<"*"; } cout<<endl; } return 0; }


测评信息: