zoukankan      html  css  js  c++  java
  • 控制台画圆

      书上看到一个画空心圆的题,于是用C++写了一个实心圆...

    #include <iostream>
    #include <math.h>
    
    using namespace std;
    
    class DrawCircle {
    public:
    	void drawCircle(int r) {
    		int x, y;
    		int params_1 = 2;
    		int params_2 = 5;
    
    		for (y = 0; y < r; y++) {
    			x = -(int)sqrt(2 * y * r - y * y) + r;
    			for (int i = 0; i < params_1*x; i++)
    				cout << ' ';
    			cout << '*';
    			for (int i = ((int)sqrt(2 * y * r - y * y) + r - x)*params_1 + params_2; i >= 0; i--)
    				cout << (i % 2 == 0 ? '*' : i % 3 == 0 ? '$' : '%');
    			cout << '*' << endl;
    		}
    
    		for (; y >= 0; y--) {
    			x = -(int)sqrt(2 * y * r - y * y) + r;
    			for (int i = 0; i < params_1*x; i++)
    				cout << ' ';
    			cout << '*';
    			for (int i = ((int)sqrt(2 * y * r - y * y) + r - x)*params_1 + params_2; i >= 0; i--)
    				cout << (i % 2 == 0 ? '*' : i % 3 == 0 ? '$' : '%');
    			cout << '*' << endl;
    		}
    	}
    };
    
    int main()
    {
    	DrawCircle dc;
    	int r = 12;
    
    	dc.drawCircle(r);
    	getchar();
        return 0;
    }
    

      运行结果:

      更简洁一点的代码:

    #include <iostream>
    #include <math.h>
    
    using namespace std;
    
    class DrawCircle {
    public:
    	void drawCircle(int r) {
    		int x, y;
    		int i;
    		double params_1 = 2.5;
    
    		for (y = 10; y >= -r; y--) {
    			x = (int)sqrt(r * r - y * y);
    			for (i = 0; i < 30 - params_1 * x; i++)
    				cout << ' ';
    			cout << '*';
    			for (; i < 30 + params_1 * x; i++)
    				cout << (i % 2 == 0 ? '*' : i % 3 == 0 ? '$' : '%');
    			cout << '*' << endl;
    		}
    	}
    };
    
    int main()
    {
    	DrawCircle dc;
    	int r = 10;
    
    	dc.drawCircle(r);
    	getchar();
        return 0;
    }
    

      运行截图:

  • 相关阅读:
    Reflector7.5.2.1(最新免费破解版)
    linux shell中变量的特殊处理
    linux中什么是shell?
    关于sql server中主键的一点研究
    根据数据库连接,登录操作系统的一个方法
    无图片取得圆角效果
    结对编程作业(java实现)
    第三章、android入门
    第七章:android应用
    javascript编辑excel并下载
  • 原文地址:https://www.cnblogs.com/darkchii/p/8437002.html
Copyright © 2011-2022 走看看