CCF 201409-2 画图

/* 创建100*100的数组,并用 0 初始化 将涂色区域赋值为 1,看有多少个 1 */ #include <iostream> #include <cstring> using namespace std; int a[100][100]; int main(){ memset(a, 0, sizeof(a)); int n; cin >> n; int x1, y1,
相关文章
相关标签/搜索