fork download
  1. #include <stdio.h>
  2. //Riccardo Callegaro 2SC
  3. //Programma che calcola se il numero letto è positivo o negativo
  4. int main(void) {float a, b;
  5. scanf("%f", &a);
  6. b = a / fabs(a);
  7. if (b==1) printf("%.2f è positivo", a);
  8. else {printf("%.2f è negativo", a);
  9. }
  10. return 0;
  11. }
  12.  
  13.  
  14.  
Success #stdin #stdout 0s 5288KB
stdin
-7
stdout
-7.00 è negativo