Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
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
Generated on Thu Aug 31 2023 15:59:07 by
1.7.2