Sum of 4 digit in python
Sum of 4 digit in python
Sum of 4 digit in python
Sum of 4 digit in python
Simple bank calculator in c# using System; namespace ConsoleApp1 { class bank { public String name; public int id; public double amount; public double principle; public int time; public int type; public double interest; public void detail(String name, int id) { this.name = name; this.id = id; } public void input() { Console.WriteLine("Enter the amount … Continue reading Bank Calculator in c#
Programs for factorial in php <?php $num = 5; $fact = 13; for ($i=$num; $i>=1; $i--) { $fact *= $i; } echo "Factorial of" . $num . "is" . $fact; ?>
Program for 2d array in PHP <?php $ar = array(array(25,29,35), array(39,41,43)); $br = array(array(45,47,49), array(51,53,55)); $cr=array(); echo "First array</br>"; for ($i=0; $i <2 ; $i++) { for ($j=0; $j ❤ ; $j++) { echo $ar[$i][$j]."\n"; } echo "</br>"; } echo "</br></br></br>"; echo "second array</br>"; for ($i=0; $i <2 ; $i++) { for ($j=0; $j ❤ … Continue reading 2-D Array in PHP
shortcut for "Narrator on/off" Some useful and most amazing shortcut keys of computer/laptop for keyboard keys These shortcut keys are useful for computer user, office worker, computer geek and computer teacher you can use these keys for Microsoft word, excel, PowerPoint presentation, for gaming and also use for pc browser like chrome, uc browser, etc. … Continue reading Shortcuts Key for Laptop
You must be logged in to post a comment.