Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- //DICHIARAZIONE DELLE VARIABILI NECESSARIE
- //base
- int base = 0; //inizializzare
- int altezza = 0;
- int area =0;
- //ELABORAZIONE
- base = 5;
- altezza = 4;
- area = base*altezza/2;
- //OUTPUT
- cout << area << endl;
- //PROVATE A ...
- //lasciare a zero solo la base
- //lasciare a zero solo altezza
- //lasciare a zero base e altezza
- //base un valore pari e altezza un valore dispari
- //base o altezza un valore con la virgola (lo accetta??)
- //base o altezza con valore negativo
- //base o altezza con valori MOLTO grandi (già quanto grandi possono poi diventare??)
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement