1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
|
#include <cstdlib>
#include <iostream>
#include <math.h>
using namespace std;
int main(int argc, char *argv[])
{ int a, ax, ay, again; //added int again
double x, y, z, bq, dq, x1, x2, d;
do //start the do!
{
system("cls"); // added to refresh screen in case re-run
cout<<"Questo programma e' una vera e propria calcolatrice spero possa esserti utile\n";
cout<<"\n1-Addizione\n2-Sottrazione\n3-Moltiplicazione\n4-Divisione\n5-Divisione di numeri interi con resto\n6-Potenza\n7-Radice\n8-Equazioni di secondo grado\n";
cout<<"\nInserisci l' operatore: ";
cin>>a;
if (a==1)
{
cout<<"\nInserisci il primo numero: ";
cin>>x;
cout<<"\nInserisci secondo numero: ";
cin>>y;
cout<<"\n\n"<<x<<" + "<<y<<" = "<<x+y<<"\n\n";
}
else if (a==2)
{
cout<<"\nInserisci il primo numero: ";
cin>>x;
cout<<"\nInserisci secondo numero: ";
cin>>y;
cout<<"\n\n"<<x<<" - "<<y<<" = "<<x - y<<"\n\n";
}
else if (a==3)
{
cout<<"\nInserisci il primo numero: ";
cin>>x;
cout<<"\nInserisci secondo numero: ";
cin>>y;
cout<<"\n\n"<<x<<" x "<<y<<" = "<<x * y<<"\n\n";
}
else if (a==4)
{
cout<<"\nInserisci il primo numero: ";
cin>>x;
cout<<"\nInserisci secondo numero: ";
cin>>y;
cout<<"\n\n"<<x<<" / "<<y<<" = "<<x / y<<"\n\n";
}
else if (a==5)
{
cout<<"\nInserisci il primo numero: ";
cin>>ax;
cout<<"\nInserisci secondo numero: ";
cin>>ay;
cout<<"\n\n"<<ax<<" / "<<ay<<" = "<<ax / ay<<"resto"<<ax % ay;
}
else if (a==6)
{
cout<<"\nInserisci il numero: ";
cin>>x;
cout<<"\nInserisci l'esponete: ";
cin>>y;
z=pow(x,y);
cout<<"\n"<<x<<"^"<<y<<" = "<<z<<"\n\n";
}
else if (a==7)
{
cout<<"\nInserisci il numero: ";
cin>>x;
cout<<"\nInserisci il radice: ";
cin>>y;
z=pow(x,1/y);
cout<<"\nRadice "<<y<<" di "<<x<<" = "<<z<<"\n\n";
}
else if (a==8)
{
cout<<"\nInserisci il valore della x^2: ";
cin>>x;
cout<<"\nInserisci il valore della x: ";
cin>>y;
cout<<"\nInserisci il termine noto: ";
cin>>z;
bq=pow(y,2);
d=bq-4*x*z;
if (d>=0)
{
dq=pow(d,0.5);
x2=((0-y)+dq)/(2*x);
x1=((0-y)-dq)/(2*x);
if (x1==x2)
cout<<"\nLa soluzione e'"<<x1<<"\n\n";
else
cout<<"\nLe soluzioni sono "<<x1<<" e "<<x2<<"\n\n";
}
else
{cout<<"\nLe soluzioni non esistono \n\n";}
}
else
cout<<"\nErrore nella forma.\n\n";
cout<<"1-Going to the top\n2-Exit\nSelection: "; // here's where you'll get your input!
cin >> again;
}while(again == 1); // end it!
system("PAUSE");
return EXIT_SUCCESS;
}
| |