标签:窗口 边框 src 形式 image abs hog break 电脑
小明为某机构设计了一个十字型的徽标(并非红十字会啊),如下所示:
对方同时也需要在电脑dos窗口中以字符的形式输出该标志,并能任意控制层数。
#include <iostream> #include <cstdio> #include <stdio.h> #include <vector> #include <algorithm> #include <stdlib.h> #include <string.h> #include <cmath> #include <string> #include <fstream> using namespace std; int hoge(int x,int y,int n){ if(x == 2*(n+1) && y <=2*n)//第一排 return 1; else if(x == 2*n+1 && y == 2*n)//第二排 return 1; else if(x < 2*n && y== 2*(n+1)) //四周边框 return 1; else if(x ==0 && y==0)//图形中心 return 1; else if(x==2*n && (y==2*(n+1)||y==2*(n+1)-1||y==2*(n+1)-2))//第三排 return 1; return 0; } int main(){ int n; cin>>n; int x = 2*(n+1);//x for(int i=0;i<4*n+5;i++){ for(int j=0;j<4*n+5;j++){ int k; for(k = 0;k<=n;k++) if(hoge(abs(x-i),abs(x-j),k)==1){ cout<<‘$‘; break; } if(k == n+1) cout<<‘.‘; } cout<<endl; } return 0; }
标签:窗口 边框 src 形式 image abs hog break 电脑
原文地址:https://www.cnblogs.com/woxiaosade/p/10316348.html