我正在开发一个编码项目,让我们使用星号绘制各种形状。到目前为止,我画了一个X,一个矩形,以及一个正方形的上下部分。最后的项目让我们画了一个圆圈,和我以前用过的4个项目一样 - 使用嵌套for和if else循环创建一种排序网格,并指定绘制“”或“”的位置*“不尽如人意。这是我的代码:
int main() {
int rad; // int for radius
cout << "We are creating a circle made of asterisks. Please input the radius: " << endl;
cin >> rad;
int i;
int t;
for(i = 1 ; i <= (rad * 2) + 1; i++)
{
for(t = 1; t <= (rad * 2) + 1 ; t++)
{
if((i == 1 && t == rad + 1) /*|| (i == (rad * 2) && t == rad + 1) || (i == rad/2 && t == rad/2)*/)
{
cout << "*";
}
else if (i >= 2 && i <= rad && t == (rad+1) - (i-1))
{
cout << "*";
}
else if (i >= 2 && i <= rad && t == (rad+1) + (i-1))
{
cout << "*";
}
else if (i >= rad && t == (i - rad))
{
cout << "*";
}
else if (i >= rad && t == (rad * 2) + 2 - (i - rad))
{
cout << "*";
}
else
{
cout << " ";
}
}
cout<< endl;
}
return 0;
}
以上的输出?完美的钻石:
We are creating a circle made of asterisks. Please input the radius: 5
*
* *
* *
* *
* *
* *
* *
* *
* *
* *
*
显然我的方法不起作用。我已经尝试调整我的参数以增加我的星号的间距,创建一种粗略的圆形近似,但它看起来不正确。我不禁认为必须有一种优雅,优越的方式来做到这一点。也许是一种使用半径的更多数学方法。有什么建议或提示吗?
答案 0 :(得分:1)
以下是关于如何绘制圆圈的一些提示:
答案 1 :(得分:1)
这是一种使用半径绘制圆的更多数学方法。
#include <iostream>
#include <math.h>
using namespace std;
int pth (int x,int y) {
return sqrt (pow(x,2)+pow(y,2));
}
int main ( ) {
int c=0;
int r=10;
const int width=r;
const int length=r*1.5;
for (int y=width;y >= -width;y-=2) {
for (int x=-length;x <= length;x++) {
if ((int) pth(x,y)==r) cout << "*";
else cout << " ";
}
cout << "\n";
}
cin.get();
return 0;
}