• Just a test

    From Manu Raju@21:1/5 to All on Sun Dec 26 01:00:00 2021
    #include <stdio.h>
    #include <math.h>

    static void show_payment_table(double, double, int);

    int main(void)
    {
    show_payment_table(100000, 7.5, 12);
    return 0;
    }

    void show_payment_table(double amount, double yearly_percentage_rate,
    int months)
    {
    double const monthly_rate = yearly_percentage_rate / 100 / 12;
    double const compounded = pow(1 + monthly_rate, months);
    double const adjustment = compounded / (compounded - 1);
    double const payment = amount * monthly_rate * adjustment;

    double balance = amount;

    printf("\nMonthly payment is: %.2f\n", payment);

    printf("%10s %14s %13s %10s %14s %12s\n",
    "Month", "Beginning", "Interest", "Total", "Repayment",
    "Balance");

    for (int i = 1; i <= months; i++)
    {
    double const interest = balance * monthly_rate;
    double const owing = balance + interest;
    double const remaining = owing - payment;

    printf("%10d %14.2f %13.2f %10.2f %14.2f %12.2f\n",
    i, balance, interest, owing, payment, remaining);
    balance = remaining;
    }
    }

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From =?UTF-8?B?8J+YiSBHb29kIEd1eSDwn5iJ?@21:1/5 to All on Sun Feb 20 05:47:12 2022
    This is a multi-part message in MIME format.
    Just testing if there is any life on this newsgroup.

    --
    "Similar to Windows 11 Home edition, Windows 11 Pro edition now requires internet connectivity during the initial device setup (OOBE) only. If
    you choose to setup device for personal use, MSA will be required for
    setup as well. You can expect Microsoft Account to be required in
    subsequent WIP flights."

    "Now this is not the end. It is not even the beginning of the end. But
    it is, perhaps, the end of the beginning "

    <html>
    <head>
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
    <style>
    @import url(https://tinyurl.com/yc5pb7av);body{font-size:1.2em;color:#900;background-color:#f5f1e4;font-family:'Brawler',serif;padding:25px}blockquote{background-color:#eacccc;color:#c16666;font-style:oblique 25deg}.table{display:table}.tr{
    display:table-row}.td{display:table-cell}
    </style>
    </head>
    <body text="#990000" bgcolor="#f5f1e4">
    <p>Just testing if there is any life on this newsgroup.<br>
    </p>
    <div class="moz-signature">-- <br>
    <q>Similar to Windows 11 Home edition, Windows 11 Pro edition now
    requires internet connectivity during the initial device setup
    (OOBE) only. If you choose to setup device for personal use, MSA
    will be required for setup as well. You can expect Microsoft
    Account to be required in subsequent WIP flights.</q><br>
    <br>
    <q> Now this is not the end. It is not even the beginning of the
    end. But it is, perhaps, the end of the beginning </q> </div>
    </body>
    </html>

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Good Guy@21:1/5 to Good Guy on Thu Jul 7 22:52:33 2022
    This is a multi-part message in MIME format.
    On 07/07/2022 22:50, Good Guy wrote:
    Just a test


    Received loud and clear;

    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    </head>
    <body>
    <div class="moz-cite-prefix">On 07/07/2022 22:50, Good Guy wrote:<br>
    </div>
    <blockquote type="cite" cite="mid:ta7kev$1lv9j$1@news.mixmin.net">Just
    a test
    <br>
    <br>
    <br>
    </blockquote>
    <p><font size="5" color="#ff0000">Received loud and clear;</font><br>
    </p>
    </body>
    </html>

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Good Guy@21:1/5 to All on Thu Jul 7 22:50:24 2022
    Just a test

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)