???咋错啦???

P1319 压缩技术

Elliott19 @ 2022-08-26 10:59:01

#include<bits/stdc++.h>
using namespace std;
int a[11000],c[220]; 
int main()
{
    int n;
    cin>>n;
    for(int i=1;i<=n*2;i++)cin>>c[i];
    int flag=0,i=1,k=1;
    while(i<=n*n)
    {
        for(int j=i;j<=c[k]+i;j++)a[j]=flag;
        i+=c[k];
        if(flag==0)flag=1;
        else flag=0;
        k++;
    }
    for(int j=1;j<=n*n;j++)
    {
        cout<<a[j];
        if(j%n==0)cout<<endl;
    }
    return 0;
}

by myyyIisq2R @ 2022-08-26 11:07:49

放上我的

#include <bits/stdc++.h>
using namespace std;

int main()
{
    int n;
    cin >> n;
    bool op = 0;
    int zong = n * n;
    int i = 1;
    while (i <= zong)
    {
        int temp;
        cin >> temp;
        while (temp--)
        {
            cout << op;

            if (i % n == 0)
                cout << (char)10;
            i++;
        }
        op = !op;

    }
}

by liuhongcheng2013 @ 2022-08-26 11:09:23

能不用万能头文件吗? 因为万能头文件里的一些函数名你可能不知道,在定义变量名就可能定义成函数名 比如万能头文件里有个函数叫“time”,经常求时间的时候就会用到“变量类型 time;”


by myyyIisq2R @ 2022-08-26 11:12:00

@liuhongcheng2013 自己用着开心就好


by tin_ingot @ 2022-08-26 11:21:47

@liuhongcheng2013 呵,不重名就好


|