/* nag_sin_integral (s13adc) Example Program.
 *
 * Copyright 2014 Numerical Algorithms Group.
 *
 * Mark 1, 1990.
 */

#include <nag.h>
#include <stdio.h>
#include <nag_stdlib.h>
#include <nags.h>

int main(void)
{
  Integer exit_status = 0;
  double  x, y;

  /* Skip heading in data file */
  scanf("%*[^\n]");
  printf("nag_sin_integral (s13adc) Example Program Results\n");
  printf("     x           y\n");
  while (scanf("%lf", &x) != EOF)
    {
      /* nag_sin_integral (s13adc).
       * Sine integral Si(x)
       */
      y = nag_sin_integral(x);
      printf("%12.3e%12.3e\n", x, y);
    }

  return exit_status;
}