#include <cstdlib>
#include <iostream>
using namespace std;
int main()
{
double num;
double num2;
char choice;
for (;;){
do {
cout<<"Welcome to thejoshcalculator. V1.5\n";
cout<<"Please choose an option by entering the number, press q to quit\n";
cout<<"1 - Addition\n";
cout<<"2 - Subtraction\n";
cout<<"3 - Division\n";
cout<<"4 - Multiplication\n";
cout<<"5 - Help\n";
cout<<"6 - About This Program\n";
cout<<"7 - Updates to this program\n";
cin>>choice;
} while ( choice < '1' || choice > '7' && choice != 'q');
if (choice == 'q') break;
switch (choice) {
case '1':
cout<<"Please enter a number\n";
cin>>num;
cout<<"Another number to be added\n";
cin>>num2;
cout<<num + num2;
cout<<"\n";
break;
case '2':
cout<<"Please enter a number\n";
cin>>num;
cout<<"Another number to be subtracted\n";
cin>>num2;
cout<<num - num2;
cout<<"\n";
break;
case '3':
cout<<"Please enter a number\n";
cin>>num;
cout<<"Another one to be divided\n";
cin>>num2;
cout<<num / num2;
cout<<"\n";
break;
case '4':
cout<<"Please enter a number\n";
cin>>num;
cout<<"Another one to be multiplied\n";
cin>>num2;
cout<<num * num2;
cout<<"\n";
break;
case '5':
cout<<"This is a simple calculator made by me - Josh.\n";
cout<<"To select an option, type the number next to the option and press enter\n";
cout<<"E.G. for division, you would type 3 and press enter.\n";
cout<<"\n";
break;
case '6':
cout<<"thejoshcalculator, made by Joshua Griggs - Copyright 2007. :)\n";
cout<<"Feedback would be nice - joshieboy06@hotmail.com also, what programmes\n";
cout<<"do people need. Please give me ideas for programs. Bye!!\n";
cout<<"\n";
break;
case '7':
cout<<"Updates include: -double variable instead of int, so that decimals can be used.\n";
cout<<" -do while loop so that you can exit the program yourself\n";
cout<<"\n";
break;
default:
cout<<"That is not an option";
}
}
return 0;
}
Artikel Terkait:
Belajar Struktur Data
- Class Inheritance
- Recursion Shortest Function to Reverse a String
- Calling functions with Inline Assembly
- Class Bilangan [Bahasa C++]
- Struktur Data Tree (Pohon)
- Struktur Data Queue (Antrian)
- Struktur Data Stack
- Jawaban Pretest & Post Test Praktikum IV (Struktur Data)
- Laporan Praktikum II Struktur Data
- Laporan Diskusi Minggu II
- Pemrograman Dasar C++
- Abtrak Data Type
Algoritma dan Pemrograman
- Class Inheritance
- OOP Recursive Decent Parsing III
- OOP Recursive Decent Parsing II
- OOP Recursive Decent Parsing I
- Calculate Sequebce by Using Iterative Function
- A Comparison of Sorting Algorithms
- Typical data sequences for testing sorting algorithms
- Quicksort Algorithm
- Vector
- Function to reverse an integer array
- Array
- String Contains function
- RECCURENCE RELATION
- Recursion
- Recursion Shortest Function to Reverse a String
- Recursive Format numbers with commas
- Calling functions with Inline Assembly
- Recursive Function
- Algoritma Menentukan Tahun Kabisat
- Algoritma dan Class Bilangan Prima
- Class Luas Lingkaran dan Volume Bola With Jeliot
- Class Bilangan [Bahasa C++]
- Struktur Perulangan (Lanjutan)
- Struktur Perulangan
Comments :
0 comments to “Calculator (C++)”
Post a Comment