summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--numeri.cc7
1 files changed, 5 insertions, 2 deletions
diff --git a/numeri.cc b/numeri.cc
index 10be37f..217d6d6 100644
--- a/numeri.cc
+++ b/numeri.cc
@@ -8,11 +8,14 @@ int main(void)
fstream file;
file.open("dati.dat");
- int a, b, c, seq = 0, tot = 0, num;
- char stringa[] = "112356812983";
+ typedef unsigned short int size_t;
+
+ size_t a, b, c, seq = 0, tot = 0, num;
+ char stringa[] = "12312312312";
char l;
while(true)
{
+ cout << "3 numeri: ";
cin >> a >> b >> c;
if(a >= 0 && a <= 9 && b >= 0 && b <= 9 && c >= 0 && c <= 9){
if(a != b && b != c && a != c) break;