Thursday, 30 May 2019

fibonacci Serise in java script



<!DOCTYPE html>
<html>
<head>
<title> fibonacci Serise </title>
<script  type="text/javascript">
var a,b,c;
a=0;
b=1;
c=b;
for(var i=1;i<100;i++){
document.write(c+"</br>");
c= a+b;
a=b;
b=c;
}
</script>
</head>
<body>
</body>
</html>


OUT PUT

No comments:

Post a Comment

SEO introduction

What is SEO? SEO(Search Engine Optimization ) is a technique that helps to bring the Website on top. Seo depends on the Keyword . Ke...