参考
x arduinoでの予定は、未定
目的
主に整数の足し算のベンチマークに使われるので遊んでみる
値として次なら正解
0,1,1,2,3,5,8,13,21,34,55,
オンラインコンパイラ
#include <iostream>
using namespace std;
int main(void){
// Your code here!
printf("\nchk\n");
printf("0,1,1,2,3,5,8,13,21,34,55,\n\n");
int a = 0;
int b = 1;
int c;
printf("exe\n");
printf("%d,",a);
printf("%d,",b);
for(int i=0;i<9;i++){
//printf("[%d]:",i);
c = a + b;
printf("%d,",c);
a = b;
b = c;
}//for
}//main
chk
0,1,1,2,3,5,8,13,21,34,55,
exe
0,1,1,2,3,5,8,13,21,34,55,