本文整理汇总了C++中Turtle::getString方法的典型用法代码示例。如果您正苦于以下问题:C++ Turtle::getString方法的具体用法?C++ Turtle::getString怎么用?C++ Turtle::getString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Turtle
的用法示例。
在下文中一共展示了Turtle::getString方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: ccc_win_main
/**
The main function begins execution of the program.
*/
int ccc_win_main() {
Turtle myrtle;
double size = 3;
myrtle.moveTo(5 - size / 2, -9); // bottom of drawing area
myrtle.setHeading(90);
for (int i = 3; i < 10; i++) {
drawPolygon(myrtle, size, i);
}
myrtle.moveTo(-4 + size / 2, 1);
myrtle.setHeading(-18);
drawStar(myrtle, size, 5);
myrtle.moveTo(-5, -5); // center of drawing area
myrtle.setHeading(0);
drawRosette(myrtle, size, 40);
myrtle.moveTo(5, 5); // center of drawing area
myrtle.setHeading(90);
drawSpiral(myrtle, .01);
usleep(2000000);
cwin.clear();
myrtle.moveTo(0, -9); // start of drawing area
myrtle.setHeading(0);
tree(myrtle, 10, 7, 60, .6);
usleep(2000000);
cwin.clear();
myrtle.moveTo(-9, -9); // start of drawing area
myrtle.setHeading(90);
koch(myrtle, 5, .25, 80);
usleep(2000000);
cwin.clear();
myrtle.moveTo(4, -8); // start of drawing area
myrtle.setHeading(0);
kochSnowflake(myrtle, 5, .05);
myrtle.sleep(2000);
myrtle.clear();
string input = myrtle.getString("Enter a message: ");
int num1 = myrtle.getInt("Enter an integer number: ");
double num2 = myrtle.getDouble("Enter a double number: ");
myrtle.moveTo("Click mouse to display the message");
myrtle.print(input);
myrtle.moveTo("Click mouse to display the integer number");
myrtle.print(num1);
myrtle.moveTo("Click mouse to display the double number");
myrtle.print(num2);
myrtle.moveTo("Click mouse to display a square");
myrtle.setHeading(0);
myrtle.right(90);
myrtle.forward(5);
myrtle.right(90);
myrtle.forward(5);
myrtle.right(90);
myrtle.forward(5);
myrtle.right(90);
myrtle.forward(5);
}
示例2: ccc_win_main
//.........这里部分代码省略.........
to the centerpoint of the polygon. The following code will
center the shape in the window.
*/
double apothem = length / (2 * tan(PI / sides));
t.moveTo(length / 2, -apothem);
int i = 0;
while (i < sides) {
t.forward(length);
t.right(degrees);
i++;
}
}
if (sides == 1) {
t.setHeading(0);
// Creates the upper case letter M.
t.moveTo(NTHREE,NNINE);
t.right(TEN);
t.forward(FORWARD_INC);
t.right(G_TURN2);
t.forward(FORWARD_INC);
t.left(G_TURN2);
t.forward(FORWARD_INC);
t.right(G_TURN2);
t.forward(FORWARD_INC);
// Creates the upper case letter G.
t.moveTo(SEVEN_POINT_FIVE, N_ONE_POINT_FIVE);
t.left(G_TURN);
t.forward(2);
t.backward(2);
t.right(ONE_THIRTY);
t.forward(2);
t.left(G_TURN);
t.forward(2);
t.left(G_TURN);
t.forward(2);
t.left(G_TURN);
t.forward(2);
t.left(G_TURN);
t.forward(2);
t.left(G_TURN);
t.forward(2);
t.left(G_TURN);
t.forward(2);
t.left(SMALL_TURN);
t.forward(1);
t.left(SMALL_TURN);
t.forward(1);
t.left(SMALL_TURN);
t.forward(1);
t.left(SMALL_TURN);
t.forward(1);
t.backward(2);
// Creates the upper case letter J.
t.setHeading(RIGHT_TURN);
t.moveTo(NSEVEN, FIVE);
t.forward(2);
t.right(STRAIGHT);
t.forward(1);
t.left(RIGHT_TURN);
t.forward(2);
t.right(RIGHT_TURN);
t.forward(1);
// Creates the upper case letter W.
t.moveTo(-FOUR, FIVE);
t.right(TWO_THIRTY);
t.forward(W_INC);
t.left(RIGHT_TURN);
t.forward(2);
t.right(RIGHT_TURN);
t.forward(2);
t.left(RIGHT_TURN);
t.forward(W_INC);
// Creates the upper case letter C.
t.moveTo(FOUR, FIVE);
t.right(C_TURN);
t.forward(2);
t.right(STRAIGHT);
t.forward(2);
t.left(RIGHT_TURN);
t.forward(2);
t.left(RIGHT_TURN);
t.forward(2);
}
string repeat = t.getString("Do you wish to continue (y/n)? ");
if (repeat != "y") running = false;
else t.clear();
}
cout << "Exiting Program.\n";
exit(0);
return 0;
}