Monthly Archives: July 2019

Write and Run Sample Python Script

How to Write and Run Sample Python Script: In this tutorial we will write a sample Python script To Input name of the user and display a Welcome message to the user. We will suppose that you have already installed Python 3.7 on your computer system. If you have not installed the Python 3.7, please… Read More: Write and Run Sample Python Script »

Loading

How To Run Python on Windows

How To Run Python on Windows – The minimum requirement to do so is to Install Python on Windows. Here is a simple and easy to understand Python Installation Tutorial With Pictures. How To Download and Install Python On Windows You can easily download and install Python on Windows by following the steps described in… Read More: How To Run Python on Windows »

Loading

Reverse Number Code in C

Task: Reverse Number Code in C- Write a C Program to input number and print the number in Reverse. If the user enters a number =123, the program will print its reverse number 321. The Source Code of Reverse Number Program in C // Write a C program to Enter a number at run time… Read More: Reverse Number Code in C »

Loading

Reverse Number Code C Plus Plus

Task: Reverse Number Code C Plus Plus The Source Code of C++ Program:Reverse Number Code C Plus Plus // Write a C++ program to input a number // and display its Reverse Number // For example, if you Enter number=123 // Program will show Reverse number=321 // www.EasyCodeBook.com #include<iostream> using namespace std; int main() {… Read More: Reverse Number Code C Plus Plus »

Loading

Java If Else Test Grade Program

Task: Java If Else Test Grade Program – Write a Java program to input test score of a student and show the grade according to the given criteria: test scores 90 or more , ‘A’ grade test scores 80 or more, ‘B’ grade test scores 70 or more, ‘C’ grade test scores 60 or more,… Read More: Java If Else Test Grade Program »

Loading

Sum and Average of Float Array in C Plus Plus

Task: Sum and Average of Float Array in C Plus Plus The Source Code of C++ Program Sum and Average of Float Array // Write a C++ Program using Arrays // to input n numbers in array // then Calculate and Print sum & average // of all numbers in array #include<iostream> #include<conio.h> using namespace… Read More: Sum and Average of Float Array in C Plus Plus »

Loading

Sum & Count of Even Odd Separately in Array

Task: Sum & Count of Even Odd Separately in Array // Write a C++ program to input 10 numbers // in array then display sum and count of even // and odd numbers in Array, separately. // Author: www.EasyCodeBook.com (c) #include<iostream> using namespace std; int main() { int arr[10],i,esum,osum,ecount,ocount; for(i=0;i<10;i++) { cout<<“Enter Number “<<(i+1)<<” :”;… Read More: Sum & Count of Even Odd Separately in Array »

Loading