⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 truefalse.pde

📁 This is processing for java examples.
💻 PDE
字号:
/** * True/False.  *  * Boolean data is one bit of information. True or false.  * It is common to use Booleans with control statements to  * determine the flow of a program. In this example, when the * boolean value "x" is true, vertical black lines are drawn and when * the boolean value "x" is false, horizontal gray lines are drawn.  */ boolean x = false;size(200, 200);background(0);stroke(0);for (int i = 1; i < width; i += 2) {  if (i < width/2) {    x = true;  } else {    x = false;  }    if (x) {    stroke(255);    line(i, 1, i, height-1);  }    if (!x) {    stroke(126);    line(width/2 , i, width-2, i);  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -