3 条题解

  • 3
    @ 2024-7-13 17:23:40
    #include<iostream>
    using namespace std;
    
    int a[101][101];
    int main(){
    	int n;
    	cin>>n;
    	for(int i=0;i<n;i++){
    		for(int j=0;j<n;j++){
    			cin>>a[i][j];
    		}
    	}
    	for(int i=0;i<n;i++){
    		for(int j=0;j<=i;j++){
    			cout<<a[i][j]<<" ";
    		}
    		cout<<endl;
    	}
    }
    

    信不信由你

    • 1
      @ 2024-12-14 18:54:32

      #include <bits/stdc++.h> #include <iostream> #include <iomanip> #include <ios> #include <iosfwd> #include <istream> #include <ostream> #include <cstring> #include <cstdio> #include <stdio.h> #include <string.h> #include <assert.h> #include <ctype.h> #include <errno.h> #include <float.h> #include <limits.h> #include <locale.h> #include <math.h> #include <stdlib.h> #include <time.h> #include <wchar.h> #include <wctype.h> #include <complex.h> #include <fenv.h> #include <inttypes.h> #include <stdbool.h> #include <stdint.h> #include <tgmath.h> #include <vector> #include <algorithm> #include <cmath> #include <algorithm> #include <bitset> #include <cctype> #include <cerrno> #include <clocale> #include <cmath> #include <complex> #include <cstdlib> #include <ctime> #include <deque> #include <exception> #include <fstream> #include <functional> #include <limits> #include <list> #include <map> #include <queue> #include <set> #include <sstream> #include <stack> #include <stdexcept> #include <streambuf> #include <string> #include <utility> #include <vector> #include <cwchar> #include <cwctype> using namespace std; int d[114][514]; int main(){ int n; cin>>n; for(int i=1;i<=n;i++){ for(int j=1;j<=n;j++){ cin>>d[i][j]; } } for(int i=1;i<=n;i++){ for(int j=1;j<=i;j++){ cout<<d[i][j]<<" "; } cout<<endl; } return 0; }

      • 0
        @ 2024-12-10 18:50:55

        😕

        • 1

        信息

        ID
        294
        时间
        1000ms
        内存
        64MiB
        难度
        6
        标签
        递交数
        105
        已通过
        35
        上传者