Posts

Showing posts from April, 2022

ARMSTRONG, PRIME

 PRIME NO : <!DOCTYPE html> <html> <head>     <meta charset="utf-8">     <meta name="viewport" content="width=device-width, initial-scale=1">     <title> TAKE A NUM FIND THE FACTORIAL OF A GIVEN NO USING PROMPT</title> </head> <body>     <script type="text/javascript">         a= parseInt(prompt("Prime No Checker: ")); // set count as 0 c=0 // if given no is positive if(a>0){     // Loop checking divisability     for(i=1;i<=a;i++){         if(a%i==0){             c=c+1;         }     }     // count set to 2 when it is divided by 1 and itself     if(c==2){         document.write(`Given No ${a} is Prime No.`);                }     else{         document.write(`Given No ${a} is Not a Prime No.`);     } }else if(a==0){     document.write(`Given No ${a} is Not a Prime No.`); }else{     document.write(`Please Enter Unsigned No. `); }     </script> </body> </html&

PROMPT CALCULATOR SWAP LARGEST SMALLEST FACTOR FACTORIAL AND SUM OF SERIES PROGRAM

 SUM OF SERIES : document.write("it works Sum of series 1 2 3 4 5<br>"); var sum = 0; [1,2,3,4,5].forEach(function(number) {   sum += number; }); document.write("SUM= "+sum +"<br>"); FACTORIAL: <!DOCTYPE html> <html> <head><title> </title></head> <style type="text/css"> *{     background: #d2d5d8 ;      }    h1{     display: flex;     justify-content: center;     align-items: center; } ::selection{   background-color: #dddd2a;color:black;} </style> <body><h1>     <script type="text/javascript">         a= parseInt(prompt("Find Factorial: ")); // set factorial ans f as 1 f=1; // if given no is positive if(a>0) {     // decrementing loop     for(i=a;i>0;i--){         f= f * i;        }     document.write(`The Factorial of ${a} is ${f}`); }else if(a==0){     document.write(`The Factorial of 0 is 1`);    } else{     document.write(`Please Enter Uns