David Mc Sherry / Mbed 2 deprecated EMBED_LAB_Q2

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 
00003 DigitalOut myled(LED1);
00004 
00005 int main() {
00006     int a, b, result, n, i;
00007     printf ("Enter the number of values you wish to see and then press enter.");
00008     scanf ("%d", &n);
00009     
00010     a = 0;
00011     b = 1;
00012     
00013     for (i=1; i<=n; i++)
00014     {
00015         printf("%d", a);
00016         result = a + b;
00017         a = b;
00018         b = result;
00019     }
00020 }
00021