Maths / Calculations – Nevon Projects https://nevonprojects.com Get all the Software / Hardware projects you need Sat, 23 Jun 2012 02:40:26 +0000 en-US hourly 1 https://wordpress.org/?v=5.9.8 https://nevonprojects.com/wp-content/uploads/2022/02/cropped-npro-favion-32x32.png Maths / Calculations – Nevon Projects https://nevonprojects.com 32 32 Finding Your Day of Birth Given Date of Birth in c++ https://nevonprojects.com/finding-your-day-of-birth-given-date-of-birth-in-c/ https://nevonprojects.com/finding-your-day-of-birth-given-date-of-birth-in-c/#respond Tue, 05 Jun 2012 05:53:16 +0000 http://nevonprojects.com/?p=185 by Adarsh Ramamurthy Gives your exact day of birth from your birth date.The only input to this program is your date of birth. Based on this it calculates the day on that day. Its based on a simple mathematic problem that solves various equations to give you the required output. #include<stdio.h> #include<stdlib.h> #include<conio.h> main() { …

Finding Your Day of Birth Given Date of Birth in c++ Read More »

The post Finding Your Day of Birth Given Date of Birth in c++ appeared first on Nevon Projects.

]]>
https://nevonprojects.com/finding-your-day-of-birth-given-date-of-birth-in-c/feed/ 0
Solve Quadratic Equation using Factorisation in c++ https://nevonprojects.com/solve-quadratic-equation-using-factorisation/ https://nevonprojects.com/solve-quadratic-equation-using-factorisation/#respond Tue, 05 Jun 2012 05:47:19 +0000 http://nevonprojects.com/?p=183 by Sanchit Karve Prints the Solution of a Quadratic Equation on Screen as you would solve it using Factorisation. The quadratic equation is solved by using various equations embedded in the program to get you the desired output. Each and every step is visible as it would be solved on paper. #include <stdlib.h> #include <iostream.h> …

Solve Quadratic Equation using Factorisation in c++ Read More »

The post Solve Quadratic Equation using Factorisation in c++ appeared first on Nevon Projects.

]]>
https://nevonprojects.com/solve-quadratic-equation-using-factorisation/feed/ 0
Giving all details of Triangle given the lengths of its sides in c++ https://nevonprojects.com/giving-all-details-of-a-triangle-given-the-lengths-of-its-sides/ https://nevonprojects.com/giving-all-details-of-a-triangle-given-the-lengths-of-its-sides/#respond Tue, 05 Jun 2012 05:45:46 +0000 http://nevonprojects.com/?p=181 by Adarsh Ramamurthy Gives various details like the angles, whether the triangle can be formed or not, circum radius, etc. The input here is the length of the sides of the triangle. Based on these facts the program does a series of calculations. And it calculates weather a triangle can be formed by those sides. …

Giving all details of Triangle given the lengths of its sides in c++ Read More »

The post Giving all details of Triangle given the lengths of its sides in c++ appeared first on Nevon Projects.

]]>
https://nevonprojects.com/giving-all-details-of-a-triangle-given-the-lengths-of-its-sides/feed/ 0
Drawing Arithmatic Functions Graphically like 2x^2 in c++ https://nevonprojects.com/drawing-arithmatic-functions-graphically-like-2x2/ https://nevonprojects.com/drawing-arithmatic-functions-graphically-like-2x2/#respond Tue, 05 Jun 2012 05:44:01 +0000 http://nevonprojects.com/?p=177 by Mamoon ur Rasheed draws graph,it can also store values for future use. it can draw upto 100 graphs of different functions at one time. hope Fully it will help begineers a lot to learn. it only takes value like x,2x^2. #include<iostream.h> #include<conio.h> #include<stdlib.h> #include<graphics.h> #include<string.h> #include<fstream.h> #include<dos.h> int i; ////////////////this class will make the …

Drawing Arithmatic Functions Graphically like 2x^2 in c++ Read More »

The post Drawing Arithmatic Functions Graphically like 2x^2 in c++ appeared first on Nevon Projects.

]]>
https://nevonprojects.com/drawing-arithmatic-functions-graphically-like-2x2/feed/ 0
SUDOKU in c++ https://nevonprojects.com/sudoku/ https://nevonprojects.com/sudoku/#respond Tue, 05 Jun 2012 05:41:21 +0000 http://nevonprojects.com/?p=174 By Anil Sharma The game of sudoku designed in C++. It is the same game where the program sets you the game and you need to win with the same sudoku rules. /* SU DOKU */ #include <iostream.h> void main() { int k[9][9],K[9][9]; int i,j,i1,j1,i2,j2; int error,temp; int count=0; for(i=0;i<9;i++) for(j=0;j<9;j++) K[i][j]=0; for(i=0;i<9;i++) for(j=0;j<9;j++) { …

SUDOKU in c++ Read More »

The post SUDOKU in c++ appeared first on Nevon Projects.

]]>
https://nevonprojects.com/sudoku/feed/ 0
Easy Calculator in c++ https://nevonprojects.com/easy-calculator/ https://nevonprojects.com/easy-calculator/#respond Tue, 05 Jun 2012 05:39:27 +0000 http://nevonprojects.com/?p=169 A decent calculator by Anirudh Sanyal that performs all the arithmetical operations of a normal calculator. Can be used to study various basic coding concepts by beginners. Provides addition subtraction multiplication and division functionality in C++. #include<iostream.h> #include<conio.h> #include<math.h> void main() { long double x,y; char ch,ar; do { clrscr(); cout<<” *WELCOME TO NANU’S CALCULATOR* …

Easy Calculator in c++ Read More »

The post Easy Calculator in c++ appeared first on Nevon Projects.

]]>
https://nevonprojects.com/easy-calculator/feed/ 0