我对Arduino和它使用的编码语言都很陌生,所以我遇到了一个简单的问题。我想选择一系列值,例如1-10。在R中,我可以用// finalWords is your result
ArrayList<String> finalWords = new ArrayList<String>();
ArrayList<String> words = new ArrayList<String>();
for(String str : "I want to walk in the park with my father".split(" "))
words.add(str);
while(words.size() > 0)
{
String str = "";
for(int i = 0; i < 3; i++)
{
if(words.size() > 0)
{
str += words.get(0) + " ";
words.remove(0);
}
}
finalWords.add(str);
}
做到这一点。在Arduino中做同样事情的语法是什么?
答案 0 :(得分:0)
没有。
您需要使用for
循环的旧式方法。
for (int i=0, n=1; n<=10; n++, i++)
arr[i] = n;