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