fork download
  1. #include <stdio.h>
  2. int main()
  3. {
  4. int Vezes_Digitada, Digitada = 0;
  5. float num, ultimo_num;
  6.  
  7. printf("Quantos numeros voce ira digitar?");
  8. scanf("%d", &Vezes_Digitada);
  9.  
  10. int crescente = 1;
  11.  
  12. while(Digitada < Vezes_Digitada)
  13. {
  14. printf("Digite o numero:");
  15. scanf("%f", &num);
  16.  
  17. if (Digitada != 0 && ultimo_num >= num)
  18. {
  19. crescente = 0;
  20. }
  21.  
  22. ultimo_num = num;
  23. Digitada++;
  24. }
  25.  
  26.  
  27. if(crescente == 1)
  28. {
  29. printf("Ordem crescente");
  30. }
  31. else
  32. {
  33. printf("Numeros digitados nao estao em ordem crescente");
  34. }
  35. return 0;
  36. }
  37.  
Success #stdin #stdout 0s 4196KB
stdin
5
1
2
3
4
5
stdout
Quantos numeros voce ira digitar?Digite o numero:Digite o numero:Digite o numero:Digite o numero:Digite o numero:Ordem crescente