Skip to main content

Posts

Showing posts with the label Addition of two number

Difference between Traditional programming languages and object-oriented programming languages..?

 What are Traditional programming languages and object-oriented programming languages..? or Difference between Traditional programming language  and object-oriented programming language Here....what is Traditional programming language and object-oriented programming language..? or Difference between Traditional programming language to help you make the new concepts, you are learning            as a beginner to  become a Master in any programming it's really very most important: Traditional programming language 1.Traditional computer programming has been around for more than a      century, with the first known computer program dating back to the mid-1800s.  2.Traditional Programming refers to any manually created program     that uses input data and runs on a computer to produce the output. 3.But for decades now, an advanced type of programming has revolutionized     business, particularly in ...

#logicalcoding Add two Numbers. Write a program to take input from the ...

Write a program to take a number from the user and add this number to return the values. Step-by-step becomes a logical programmer. this series is very helping full for you. I am going to introduce how to write the logic for this application and program. You have to take the values from the user and add this number it is a simple program but how you do how many cases are satisfied in this logic it is matter. If you want this logic to watch this video. Hi Welcome to coding part :    I am going to introduce how to do this question in java. Code: //Description Addtion two number number,take from user import java.util.Scanner; class Addition  { public static float add(int a,int b){       //Logic for addition   float c=a+b;       return c; } public static void main(String[] args)  { int a,b; //Write logic for take the input form user Scanner sc=new Scanner(System.in); ...