Square value added Get link Facebook X Pinterest Email Other Apps - December 10, 2023 ProblemZ=a²+y²Output: A=2 B=2 Z=8Solution of python code:a=int(input("Enter the a value"))y=int(input("Enter the y value"))z=a**2+y**2print ("SQUARE VALUE OF a and y is ",z)*Check it my code any interpreter* Get link Facebook X Pinterest Email Other Apps Comments
Emi calculator - January 16, 2024 EMI CALCULATOR:- Emi calculator using html css and javascript:- Html code:- <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="styles.css"> <title>EMI Calculator</title> <script src="sc.js"></script> </head> <body> <div class="container"> <h2>EMI Calculator</h2> <form id="emiForm"> <label for="loanAmount">Loan Amount:</label> <input type="number" id="loanAmount" required> <label for="interestRate">Interest Rate (%):</label> <input type="numbe... Read more
10 min. Webpage challenge - January 16, 2024 10 minutes challenge from sample web page create using the html and css:- Html code:- <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="stylesheet.css"> <title></title> </head> <body> <nav> <div class="logo"> <h1>Data</h1> </div> <div class="items"> <a href="div.html">Home |</a> <a href="lk.html">Service |</a> <a href="e.html">About |</a> <a href="add.html">contact </a> </div> </nav> <div class="body"> <h1>This page requires of implementation of code between user effective</h1> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Expedita, ratione.... Read more
Comments
Post a Comment