fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. float salario; // salário
  5. float emprestimo; // valor empréstimo
  6. scanf ("%f %f", &salario, &emprestimo);
  7. printf("emprestimo%s concedido", emprestimo /salario <= 1.2 ? "" : " nao");
  8. }
  9.  
  10. //https://pt.stackoverflow.com/q/201412/101
Success #stdin #stdout 0s 9432KB
stdin
100
150
stdout
emprestimo nao concedido