From dc3e22ef34f71cc0a58230b77ab79ada421fb1e7 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Wed, 18 Jan 2017 22:18:36 +0100 Subject: Update numeri.cc --- numeri.cc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'numeri.cc') 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; -- cgit v1.2.3-18-g5258