Posts

Showing posts from May, 2023

Day 4: Subtract two Integer Numbers of 100DaysCodingChallenge

Image
  Hello all,  I have started the 100 days of coding challenge to improve my programming skills.. Today is the Day4 of 100DaysCodingChallenge for  Subtract two Integer Numbers taken input by the user. Code :  let a = prompt("Enter a : "); let b = prompt("Enter b : "); let x = parseInt(a); let y = parseInt(b); let c = x - y; console.log("a - b = ", c); Output :  Happy coding:) Day 4 Of 100 Days Coding Challenge   Thank you..

Day 3: Add two Integer Numbers of 100DaysCodingChallenge

Image
Hello all,  I have started the 100 days of coding challenge to improve my programming skills.. Today is the Day3 of 100DaysCodingChallenge for  Add two Integer Numbers taken input by the user. Code :  let a = prompt("Enter a : "); let b = prompt("Enter b : "); let x = parseInt(a); let y = parseInt(b); let c = x + y; console.log("a + b = ", c); Output :  Happy coding:) Day 3 Of 100 Days Coding Challenge   Thank you..

Day 2: Print Integer of 100DaysCodingChallenge

Image
  Hello all,  I have started the 100 days of coding challenge to improve my programming skills.. Today is the Day2 of 100DaysCodingChallenge for  Print Integer Number taken input by the user. Code :  prompt("Enter a number : "); Output :  Happy coding:) Day 2 Of 100 Days Coding Challenge   Thank you..

Day 1: Print HelloWorld.! of 100DaysCodingChallenge

Image
Hello all,  I have started the 100 days of coding challenge to improve my programming skills.. Today is the Day1 of 100DaysCodingChallenge for  Print "Hello World.!"  Code :  console.log(" Hello World.!"); Output :  Happy coding:) Day 1 Of 100 Days Coding Challenge   Thank you..