2 条题解

  • 1
    @ 2022-12-3 19:36:17
    #include<bits/stdc++.h>
    
    using namespace std;
    int n;
    int main(){
    	while(cin>>n){
    		for(int i=1;i<=n;i++){
    			for(int j=1;j<=n-i;j++) {
    				cout<<" ";
    			}
    			for(int j=1;j<=i*2-1;j++) {
    				cout<<"*";
    			}
    			cout<<endl;
    		}
    		cout<<endl;
    	}
    	return 0;
    }
    

    这题的问题我就不解释了,其他人已经在讨论区解释过了。

    • 1
      @ 2022-8-22 9:53:28
      #include<bits/stdc++.h>
      using namespace std;
      int n;
      int main()
      {
      	while(cin>>n)
      	{
      		for(int i=1;i<=n;i++)
      		{
      			for(int j=1;j<=n-i;j++) cout<<" ";
      			for(int j=1;j<=i*2-1;j++) cout<<"*";
      			cout<<endl;
      		}
      		cout<<endl;
      	}
      	return 0;
      }
      
      
      • 1

      信息

      ID
      88
      时间
      1000ms
      内存
      256MiB
      难度
      4
      标签
      递交数
      45
      已通过
      20
      上传者