需要能够做一个循环, 做类似的事情:
第一次通过环绕 :
for(int i=0;i<5;i++)
{
example.print(0);
}
第二次通过:
for(int i=0;i<5;i++)
{
example.print(0);
example.print(1);
}
以其他示例为例。 打印( ) 每一次都添加 。
In order for the program to work correctly, each "example.print()" has to physically be there is the code. Any ideas?