Toggle navigation
Bootsnipp
Bootstrap
For
CSS Frameworks
Bootstrap
Foundation
Semantic UI
Materialize
Pure
Bulma
References
CSS Reference
Tools
Community
Page Builder
Form Builder
Button Builder
Icon Search
Dan's Tools
Diff / Merge
Color Picker
Keyword Tool
Web Fonts
.htaccess Generator
Favicon Generator
Site Speed Test
Snippets
Featured
Tags
By Bootstrap Version
4.1.1
4.0.0
3.3.0
3.2.0
3.1.0
3.0.3
3.0.1
3.0.0
2.3.2
Register
Login
"take input and print Fibonacci "
Bootstrap 3.0.0 Snippet by
akhtarvahid
3.0.0
input
Preview
HTML
View Full Screen
Fork
Fork this
3.8K
 
1 Fav
Post to Facebook
Tweet this
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script> </head> <div ng-app="myApp" ng-controller="myCtrl"> <div class="container"> <form> <div class="form-group"> <label for="usr">Enter Number:</label> <input type="number" class="form-control" id="usr" ng-model="prime"> <input type="button" ng-click="check()" value="check"> </div> </form> <h1>You entered: {{prime}}</h1> <h1>You entered: {{message}}</h1> </div> <script> var app = angular.module('myApp', []); app.controller('myCtrl', function($scope) { var str=''; $scope.check=function(){ alert($scope.prime); var value=$scope.prime; fibonacciRecursive(0, 1, 1, value); $scope.message=str; } function fibonacciRecursive(a, b, counter, len) { if (counter <= len) { str=str+","+a; fibonacciRecursive(b, a + b, counter + 1, len); } } }); </script> <p>Change the name inside the input field, and you will see the name in the header changes accordingly.</p>
Questions / Comments:
Post
Posting Guidelines
Formatting
- Now
×
Close
Donate
BTC: 12JxYMYi6Vt3mx3hcmP3B2oyFiCSF3FhYT
ETH: 0xCD715b2E3549c54A40e6ecAaFeB82138148a6c76