"take input and print Fibonacci "
Bootstrap 3.0.0 Snippet by akhtarvahid

<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>

Related: See More


Questions / Comments: