"application to check prime or not"
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 ----------> <!DOCTYPE html> <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) { $scope.check=function(){ alert($scope.prime); var value=$scope.prime; if(isPrime(value)) $scope.message="is a prime number"; else $scope.message="Not prime number"; } function isPrime(number) { if (typeof number !== 'number' || !Number.isInteger(number)) { return false; } if (number < 2) { return false; } if (number === 2) { return true; } else if (number % 2 === 0) { return false; } for (var i = 3; i*i <= number; i += 2) { if (number % i === 0) { return false; } } return true; } }); </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: