diff --git "a/\345\234\243\350\257\236\346\240\221.cpp" "b/\345\234\243\350\257\236\346\240\221.cpp" index e6cff5d..143dd4b 100644 --- "a/\345\234\243\350\257\236\346\240\221.cpp" +++ "b/\345\234\243\350\257\236\346\240\221.cpp" @@ -1,31 +1,26 @@ +/*https://github.com/huaji233333/urban-spoon*/ +/*v0.1-release*/ #include using namespace std; int main() -{ - int n=10; - /*for(int i=1;i<=n;i++) - { for(int j=n;j<=n;j++) - { - cout<<" "; - }}; */ +{ int n; + cin>>n; for(int i=1;i<=n;i++) - { for(int j=i/2;j<=n;j++) + { if(i%2==1) { + for(int j=(n-i)/2;j>=1;j--) cout<<" "; - } - for(int j=n-i+1;j<=n;j++) - { + for(int q=1;q<=i;q++) cout<<"*"; - } cout<