- #include<iostream.h>
- #include<stdio.h>
- #include<conio.h>
- #include<math.h>
- #include<stdlib.h>
- void add();
- void sub();
- void multi();
- void division();
- void sqr();
- void srt();
- void exit();
- void main()
- {
- clrscr();
- int opr;
- // display different operation of the calculator
- do
- {
- cout << "Select any operation from the C++ Calculator"
- "\n1 = Addition"
- "\n2 = Subtraction"
- "\n3 = Multiplication"
- "\n4 = Division"
- "\n5 = Square"
- "\n6 = Square Root"
- "\n7 = Exit"
- "\n \n Make a choice: ";
- cin >> opr;
- switch (opr)
- {
- case 1:
- add(); // call add() function to find the Addition
- break;
- case 2:
- sub(); // call sub() function to find the subtraction
- break;
- case 3:
- multi(); // call multi() function to find the multiplication
- break;
- case 4:
- division(); // call division() function to find the division
- break;
- case 5:
- sqr(); // call sqr() function to find the square of a number
- break;
- case 6:
- srt(); // call srt() function to find the Square Root of the given number
- break;
- case 7:
- exit(0); // terminate the program
- break;
- default:
- cout <<"Something is wrong..!!";
- break;
- }
- cout <<" \n------------------------------\n";
- }while(opr != 7);
- getch();
- }
- void add()
- {
- int n, sum = 0, i, number;
- cout <<"How many numbers you want to add: ";
- cin >> n;
- cout << "Please enter the number one by one: \n";
- for (i = 1; i <= n; i++)
- {
- cin >> number;
- sum = sum + number;
- }
- cout << "\n Sum of the numbers = "<< sum;
- }
- void sub()
- {
- int num1, num2, z;
- cout <<" \n Enter the First number = ";
- cin >> num1;
- cout << "\n Enter the Second number = ";
- cin >> num2;
- z = num1 - num2;
- cout <<"\n Subtraction of the number = " << z;
- }
- void multi()
- {
- int num1, num2, mul;
- cout <<" \n Enter the First number = ";
- cin >> num1;
- cout << "\n Enter the Second number = ";
- cin >> num2;
- mul = num1 * num2;
- cout <<"\n Multiplication of two numbers = " << mul;
- }
- void division()
- {
- int num1, num2, div = 0;
- cout <<" \n Enter the First number = ";
- cin >> num1;
- cout << "\n Enter the Second number = ";
- cin >> num2;
- while ( num2 == 0)
- {
- cout << "\n Divisor canot be zero"
- "\n Please enter the divisor once again: ";
- cin >> num2;
- }
- div = num1 / num2;
- cout <<"\n Division of two numbers = " << div;
- }
- void sqr()
- {
- int num1;
- float sq;
- cout <<" \n Enter a number to find the Square: ";
- cin >> num1;
- sq = num1 * num1;
- cout <<" \n Square of " << num1<< " is : "<< sq;
- }
- void srt()
- {
- float q;
- int num1;
- cout << "\n Enter the number to find the Square Root:";
- cin >> num1;
- q = sqrt(num1);
- cout <<" \n Square Root of " << num1<< " is : "<< q;
- }
Anurag Information Technology (IT) has historically influenced organizational performance and competitive standing. The increasing processing power and sophistication of analytical tools and techniques have put the strong foundation for the product called data warehouse. There are a number of reasons that any organization should consider a data warehouse, which can be the critical tool for maximizing the organization’s investment in the information it has collected and stored throughout the enterprise. IT managers need to understand the rationale and benefits of data warehouses because they may need to design and implement, or procure this kingpin of business intelligence. The data warehouses are supposed to provide storage, functionality and responsiveness to queries beyond the capabilities of today's transaction-oriented databases. Also data warehouses are set to improve the data access performance of databases. Traditional databases balance the requirement of data access w...
Comments
Post a Comment