Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.c++ > #81497

Re: rational numbers

From Keith Thompson <Keith.S.Thompson+u@gmail.com>
Newsgroups comp.lang.c++
Subject Re: rational numbers
Date 2021-09-23 19:35 -0700
Organization None to speak of
Message-ID <87v92qlmyx.fsf@nosuchdomain.example.com> (permalink)
References (16 earlier) <sii1e6$6d0$1@dont-email.me> <ir47g0Fj3ljU1@mid.individual.net> <siitne$l4r$1@dont-email.me> <87zgs2lubf.fsf@nosuchdomain.example.com> <sij7sb$bj8$1@dont-email.me>

Show all headers | View raw


Bart <bc@freeuk.com> writes:
> On 24/09/2021 00:56, Keith Thompson wrote:
>> Bart <bc@freeuk.com> writes:
>
>>> * It's not line-oriented; the new lines get out of sync with the data
>>>    being read
>> Right, it's not designed to be.  For example:
>>      int a, b, c;
>>      std::cin >> a >> b >> c;
>>      std::cout << "a=" << a << " b=" << b << " c=" << c << '\n';
>> The std::cin line reads integer values, skipping white space (which
>> includes newlines) before each.  If you just want to skip white space
>> other than newlines, there's probably a way to do that.
>> If you want line-oriented input, read a line at a time using
>> std::getline() and then parse each line.  It's not that hard.
>>      std::string line;
>>      std::getline(std::cin, line);
>>      std::stringstream ss(line);
>>      ss >> a >> b >> c;
>
> Thanks at last somebody posted some actual code instead of just saying
> how easy it was. But a couple of things:
>
> * (It needs #include <sstream>)

Yes?

> * If I put this in my loop, and type 10 20 30 on the first line, it
>   prints 10 20 30; that's fine.
>
> * But if I type only 40 on the next line, it prints 40 20 30. So if
>   there are fewer entries than expected, it will not do '>> b >> c';
>  those values are unchanged from before.

My quick and dirty code sample didn't check for errors.  The user didn't
provide inputs for those values.  What exactly do you expect to happen?

You can query ss.good(), ss.bad(), ss.fail(), and ss.eof() to see
whether the input operation succeeded.

> * It's better behaved as it doesn't try to exhaust the same line over
>   again. But if the input is '10.2 11 12', the output is '10 0
>  999'. (The 999 is what I've now initialised a,b,c to at the start of
> each loop.)
>
>
>>> * If fewer than 3 items are present on a line, then it apparently
>>>    hangs, with no explanation, waiting for them on the next line
>> Because it's not line-oriented.
>
>> Because it's not line-oriented.
>
>> Because it's not line-oriented.
>
> Isn't that what I said?

My point is that you complained that it's not line-oriented (which is a
deliberate design decision) and then complained about the inevitable
consequences of the fact that it's not line-oriented.

>>> * Numeric separators within numbers such as "_" and "'" are not
>>>    recognised, and cause an error
>> Right.  Just how permissive do you think it should be?
>
> For interactive user input - quite permissive. People are quite likely
> to type in decimal points or do unexpected things. A full treatment is 
> hard, but if someone types "100." or 1e2 instead of "100", should that
> be a hanging offence?

Hanging offence?  Give me a freaking break.

Numeric input has to define *some* syntax.  If you want a different
syntax, implement it.  That includes deciding what an integer should be
set to if the input is "1.5".  If you like, read it into a string and
try converting that string to whatever you want.

The default input for numeric input is reasonably simple and
straightforward.

>>> * Numbers which are quoted are not recognised, and cause an error
>> Right.  123 is a number; "123", “123”, '123', and «123» are not.
>
> If you are reading CSV files and such, fields are sometimes enclosed
> in quotes, including numeric fields.
>
>>> * When an out-of-range number is entered, it reads i32.max (etc) for
>>>    that number, but also generates an error
>> Yes, and?
>
> That error is the problem.

What?

You're not suggesting that it should set the value to INT_MAX *and then
not give any indication that there was a problem*, are you?

>>> * I mentioned error a few times, when that happens, it goes crazy. I
>>>    think the internal pointer is not stepped past it, and it just reads
>>> zeros, so it never consumes the rest of the line. So in a loop, it
>>> just prints zeros over and over again without the user entering
>>> anything.
>> It's difficult to respond to that without an example.
>
> I thought I posted it earlier. Here's the code:
>
>  #include <iostream>
>
>  int main()
>  {  int a,b,c;
>     int x=0;
>     do {
>      std::cout << "Prompt> ";
>      std::cin >> a >> b >> c;
>      std::cout << a << " " << b << " " << c << "\n";
>    } while (++x<10);
>  }
>
> And here it is in action; the only input I type in is the '10.2 11 12'
> line, the rest just keeps going, and only stops because I cap the
> output at 10 lines:
>
>  C:\c>a
>  Prompt> 10.2 11 12
>  10 0 0
>  Prompt> 10 0 0
>  Prompt> 10 0 0
>  Prompt> 10 0 0
>  Prompt> 10 0 0
>  Prompt> 10 0 0
>  Prompt> 10 0 0
>  Prompt> 10 0 0
>  Prompt> 10 0 0
>  Prompt> 10 0 0

The first << operation succeeded, set a to 10, and consumed the
characters '1' and '0'.

The second one failed because it was trying to read an integer value and
saw a '.' character.  Try reading an integer again, and it fails again.
If you instead tried to read a string or a character, it would consume
the '.' character and whatever follows it.

If you want to consume and discard incorrect input rather than letting
it remain in the input stream, you can do that by writing different code.

If you do something simple like `std::cin >> a >> b >> c`, it doesn't
give you a way to determine which input operation failed -- but you can
tell whether they were all successful or not.  Sometimes that's good
enough.  If it isn't, write different code.

-- 
Keith Thompson (The_Other_Keith) Keith.S.Thompson+u@gmail.com
Working, but not speaking, for Philips
void Void(void) { Void(); } /* The recursive call of the void */

Back to comp.lang.c++ | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

rational numbers alessandro volturno <alessandro.volturno@libero.it> - 2021-09-16 14:59 +0200
  Re: rational numbers Paavo Helde <myfirstname@osa.pri.ee> - 2021-09-16 16:40 +0300
    Re: rational numbers alessandro volturno <alessandro.volturno@libero.it> - 2021-09-16 18:24 +0200
      Re: rational numbers scott@slp53.sl.home (Scott Lurndal) - 2021-09-16 17:05 +0000
        Re: rational numbers Manfred <noname@add.invalid> - 2021-09-16 19:58 +0200
        Re: rational numbers Christian Gollwitzer <auriocus@gmx.de> - 2021-09-17 09:21 +0200
          Re: rational numbers David Brown <david.brown@hesbynett.no> - 2021-09-17 10:34 +0200
            Re: rational numbers Christian Gollwitzer <auriocus@gmx.de> - 2021-09-17 15:55 +0200
              Re: rational numbers David Brown <david.brown@hesbynett.no> - 2021-09-17 17:49 +0200
                Re: rational numbers Christian Gollwitzer <auriocus@gmx.de> - 2021-09-17 18:22 +0200
          Re: rational numbers Ian Collins <ian-news@hotmail.com> - 2021-09-17 22:07 +1200
            Re: rational numbers David Brown <david.brown@hesbynett.no> - 2021-09-17 13:32 +0200
              Re: rational numbers Ian Collins <ian-news@hotmail.com> - 2021-09-18 09:15 +1200
            Re: rational numbers scott@slp53.sl.home (Scott Lurndal) - 2021-09-17 14:06 +0000
      Re: rational numbers David Brown <david.brown@hesbynett.no> - 2021-09-16 20:41 +0200
        Re: rational numbers Bart <bc@freeuk.com> - 2021-09-16 21:11 +0100
          Re: rational numbers Ben Bacarisse <ben.usenet@bsb.me.uk> - 2021-09-16 21:26 +0100
            Re: rational numbers Bart <bc@freeuk.com> - 2021-09-16 21:54 +0100
            Re: rational numbers "Alf P. Steinbach" <alf.p.steinbach@gmail.com> - 2021-09-16 23:07 +0200
              Re: rational numbers "Alf P. Steinbach" <alf.p.steinbach@gmail.com> - 2021-09-16 23:27 +0200
      Re: rational numbers Paavo Helde <myfirstname@osa.pri.ee> - 2021-09-16 23:12 +0300
        Re: rational numbers alessandro volturno <alessandro.volturno@libero.it> - 2021-09-17 09:50 +0200
          Re: rational numbers David Brown <david.brown@hesbynett.no> - 2021-09-17 11:15 +0200
            Re: rational numbers alessandro volturno <alessandro.volturno@libero.it> - 2021-09-17 19:19 +0200
              Re: rational numbers James Kuyper <jameskuyper@alumni.caltech.edu> - 2021-09-17 19:00 -0400
              Re: rational numbers David Brown <david.brown@hesbynett.no> - 2021-09-18 11:39 +0200
                Re: rational numbers alessandro volturno <alessandro.volturno@libero.it> - 2021-09-18 11:56 +0200
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-18 11:01 +0100
  Re: rational numbers Juha Nieminen <nospam@thanks.invalid> - 2021-09-17 05:36 +0000
    Re: rational numbers alessandro volturno <alessandro.volturno@libero.it> - 2021-09-17 09:55 +0200
      Re: rational numbers Juha Nieminen <nospam@thanks.invalid> - 2021-09-17 11:16 +0000
        Re: rational numbers alessandro volturno <alessandro.volturno@libero.it> - 2021-09-17 18:33 +0200
        Re: rational numbers Tim Rentsch <tr.17687@z991.linuxsc.com> - 2021-10-06 13:06 -0700
    Re: rational numbers scott@slp53.sl.home (Scott Lurndal) - 2021-09-17 14:03 +0000
      Re: rational numbers Christian Gollwitzer <auriocus@gmx.de> - 2021-09-17 17:12 +0200
        Re: rational numbers Christian Gollwitzer <auriocus@gmx.de> - 2021-09-17 17:16 +0200
          Re: rational numbers Manfred <noname@add.invalid> - 2021-09-17 18:59 +0200
            Re: rational numbers scott@slp53.sl.home (Scott Lurndal) - 2021-09-17 17:13 +0000
              Re: rational numbers Juha Nieminen <nospam@thanks.invalid> - 2021-09-19 10:17 +0000
                Re: rational numbers scott@slp53.sl.home (Scott Lurndal) - 2021-09-19 14:07 +0000
                Re: rational numbers Juha Nieminen <nospam@thanks.invalid> - 2021-09-19 15:58 +0000
                Re: rational numbers scott@slp53.sl.home (Scott Lurndal) - 2021-09-19 21:53 +0000
      Re: rational numbers Ian Collins <ian-news@hotmail.com> - 2021-09-18 09:34 +1200
        Re: rational numbers David Brown <david.brown@hesbynett.no> - 2021-09-18 12:00 +0200
          Re: rational numbers scott@slp53.sl.home (Scott Lurndal) - 2021-09-18 14:54 +0000
            Re: rational numbers Bart <bc@freeuk.com> - 2021-09-18 17:36 +0100
              Re: rational numbers Christian Gollwitzer <auriocus@gmx.de> - 2021-09-18 23:29 +0200
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-19 01:09 +0100
                Re: rational numbers red floyd <no.spam.here@its.invalid> - 2021-09-18 23:45 -0700
              Re: rational numbers scott@slp53.sl.home (Scott Lurndal) - 2021-09-18 22:48 +0000
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-19 00:46 +0100
                Re: rational numbers Christian Gollwitzer <auriocus@gmx.de> - 2021-09-19 08:06 +0200
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-19 10:26 +0100
              Re: rational numbers Juha Nieminen <nospam@thanks.invalid> - 2021-09-19 10:23 +0000
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-19 12:04 +0100
                Re: rational numbers Juha Nieminen <nospam@thanks.invalid> - 2021-09-19 16:01 +0000
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-19 17:39 +0100
                Re: rational numbers Juha Nieminen <nospam@thanks.invalid> - 2021-09-20 05:25 +0000
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-20 10:37 +0100
                Re: rational numbers Juha Nieminen <nospam@thanks.invalid> - 2021-09-22 04:58 +0000
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-22 11:26 +0100
                Re: rational numbers Ian Collins <ian-news@hotmail.com> - 2021-09-22 23:13 +1200
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-22 13:45 +0100
                Re: rational numbers Ian Collins <ian-news@hotmail.com> - 2021-09-24 21:37 +1200
                Re: rational numbers Paavo Helde <myfirstname@osa.pri.ee> - 2021-09-22 15:29 +0300
                Re: rational numbers Juha Nieminen <nospam@thanks.invalid> - 2021-09-23 07:26 +0000
                Re: rational numbers scott@slp53.sl.home (Scott Lurndal) - 2021-09-19 21:54 +0000
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-20 00:31 +0100
                Re: rational numbers David Brown <david.brown@hesbynett.no> - 2021-09-20 08:33 +0200
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-20 16:11 +0100
                Re: rational numbers David Brown <david.brown@hesbynett.no> - 2021-09-20 18:08 +0200
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-20 18:39 +0100
                Re: rational numbers David Brown <david.brown@hesbynett.no> - 2021-09-20 19:49 +0200
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-20 19:04 +0100
                Re: rational numbers David Brown <david.brown@hesbynett.no> - 2021-09-20 21:35 +0200
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-20 21:38 +0100
                Re: rational numbers Ian Collins <ian-news@hotmail.com> - 2021-09-21 10:28 +1200
                Re: rational numbers Bo Persson <bo@bo-persson.se> - 2021-09-21 09:08 +0200
                Re: rational numbers David Brown <david.brown@hesbynett.no> - 2021-09-21 09:39 +0200
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-21 11:12 +0100
                Re: rational numbers Paavo Helde <myfirstname@osa.pri.ee> - 2021-09-21 15:45 +0300
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-21 14:37 +0100
                Re: rational numbers Paavo Helde <myfirstname@osa.pri.ee> - 2021-09-21 17:09 +0300
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-21 16:26 +0100
                Re: rational numbers David Brown <david.brown@hesbynett.no> - 2021-09-21 18:04 +0200
                Re: rational numbers Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2021-09-21 11:51 -0700
                Re: rational numbers David Brown <david.brown@hesbynett.no> - 2021-09-22 11:09 +0200
                Re: rational numbers scott@slp53.sl.home (Scott Lurndal) - 2021-09-21 15:38 +0000
                Re: rational numbers scott@slp53.sl.home (Scott Lurndal) - 2021-09-21 15:36 +0000
                Re: rational numbers HorseyWorsey@the_stables.com - 2021-09-21 15:49 +0000
                Re: rational numbers scott@slp53.sl.home (Scott Lurndal) - 2021-09-21 16:21 +0000
                Re: rational numbers HorseyWorsey@the_stables.com - 2021-09-22 09:21 +0000
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-21 17:45 +0100
                Re: rational numbers scott@slp53.sl.home (Scott Lurndal) - 2021-09-21 17:02 +0000
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-21 18:16 +0100
                Re: rational numbers Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2021-09-21 11:53 -0700
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-21 20:48 +0100
                Re: rational numbers scott@slp53.sl.home (Scott Lurndal) - 2021-09-21 20:23 +0000
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-21 23:29 +0100
                Re: rational numbers Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2021-09-21 13:47 -0700
                Re: rational numbers Paavo Helde <myfirstname@osa.pri.ee> - 2021-09-21 20:11 +0300
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-21 18:33 +0100
                Re: rational numbers Paavo Helde <myfirstname@osa.pri.ee> - 2021-09-21 20:43 +0300
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-21 18:59 +0100
                Re: rational numbers Paavo Helde <myfirstname@osa.pri.ee> - 2021-09-21 21:20 +0300
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-21 20:32 +0100
                Re: rational numbers scott@slp53.sl.home (Scott Lurndal) - 2021-09-21 20:24 +0000
                Re: rational numbers scott@slp53.sl.home (Scott Lurndal) - 2021-09-21 18:52 +0000
                Re: rational numbers Bo Persson <bo@bo-persson.se> - 2021-09-21 18:34 +0200
                Re: rational numbers Paavo Helde <myfirstname@osa.pri.ee> - 2021-09-21 01:16 +0300
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-21 00:39 +0100
                Re: rational numbers Manfred <noname@add.invalid> - 2021-09-22 23:45 +0200
                Re: rational numbers David Brown <david.brown@hesbynett.no> - 2021-09-22 23:51 +0200
                Re: rational numbers Manfred <noname@add.invalid> - 2021-09-23 18:42 +0200
                Re: rational numbers David Brown <david.brown@hesbynett.no> - 2021-09-23 21:52 +0200
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-23 00:17 +0100
                Re: rational numbers Branimir Maksimovic <branimir.maksimovic@gmail.com> - 2021-09-23 02:03 +0000
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-23 11:18 +0100
                Re: rational numbers HorseyWorsey@the_stables.com - 2021-09-23 10:26 +0000
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-23 12:21 +0100
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-23 12:40 +0100
                Re: rational numbers Richard Damon <Richard@Damon-Family.org> - 2021-09-23 08:05 -0400
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-23 15:02 +0100
                Re: rational numbers Ian Collins <ian-news@hotmail.com> - 2021-09-24 08:48 +1200
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-23 23:05 +0100
                Re: rational numbers Branimir Maksimovic <branimir.maksimovic@gmail.com> - 2021-09-23 23:47 +0000
                Re: rational numbers Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2021-09-23 16:56 -0700
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-24 01:58 +0100
                Re: rational numbers Branimir Maksimovic <branimir.maksimovic@gmail.com> - 2021-09-24 01:40 +0000
                Re: rational numbers Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2021-09-23 19:35 -0700
                Re: rational numbers "daniel...@gmail.com" <danielaparker@gmail.com> - 2021-09-24 09:07 -0700
                Re: rational numbers "daniel...@gmail.com" <danielaparker@gmail.com> - 2021-09-24 09:21 -0700
                Re: rational numbers HorseyWorsey@the_stables.com - 2021-09-23 14:58 +0000
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-23 17:02 +0100
                Re: rational numbers HorseyWorsey@the_stables.com - 2021-09-23 16:21 +0000
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-23 18:31 +0100
                Re: rational numbers HorseyWorsey@the_stables.com - 2021-09-24 09:12 +0000
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-24 12:10 +0100
                Re: rational numbers Branimir Maksimovic <branimir.maksimovic@gmail.com> - 2021-09-24 11:23 +0000
                Re: rational numbers HorseyWorsey@the_stables.com - 2021-09-24 15:19 +0000
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-24 17:25 +0100
                Re: rational numbers HorseyWorsey@the_stables.com - 2021-09-25 09:27 +0000
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-25 11:07 +0100
                Re: rational numbers HorseyWorsey@the_stables.com - 2021-09-25 10:14 +0000
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-25 11:53 +0100
                Re: rational numbers HorseyWorsey@the_stables.com - 2021-09-25 11:23 +0000
                Re: rational numbers Branimir Maksimovic <branimir.maksimovic@gmail.com> - 2021-09-25 12:34 +0000
                Re: rational numbers Paavo Helde <myfirstname@osa.pri.ee> - 2021-09-25 15:37 +0300
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-25 15:46 +0100
                Re: rational numbers HorseyWorsey@the_stables.com - 2021-09-25 15:19 +0000
                Re: rational numbers Branimir Maksimovic <branimir.maksimovic@gmail.com> - 2021-09-25 17:16 +0000
                Re: rational numbers Christian Gollwitzer <auriocus@gmx.de> - 2021-09-27 23:51 +0200
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-27 23:41 +0100
                Re: rational numbers Branimir Maksimovic <branimir.maksimovic@gmail.com> - 2021-09-23 10:26 +0000
                Re: rational numbers scott@slp53.sl.home (Scott Lurndal) - 2021-09-23 14:04 +0000
                Re: rational numbers Manfred <noname@add.invalid> - 2021-09-23 17:47 +0200
                Re: rational numbers scott@slp53.sl.home (Scott Lurndal) - 2021-09-23 17:07 +0000
                Re: rational numbers scott@slp53.sl.home (Scott Lurndal) - 2021-09-23 17:08 +0000
                Re: rational numbers Manfred <noname@add.invalid> - 2021-09-23 19:30 +0200
                Re: rational numbers Ian Collins <ian-news@hotmail.com> - 2021-09-24 10:06 +1200
                Re: rational numbers Juha Nieminen <nospam@thanks.invalid> - 2021-09-22 05:06 +0000
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-22 10:51 +0100
                Re: rational numbers HorseyWorsey@the_stables.com - 2021-09-22 10:54 +0000
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-22 11:59 +0100
                Re: rational numbers HorseyWorsey@the_stables.com - 2021-09-22 11:04 +0000
                Re: rational numbers "Alf P. Steinbach" <alf.p.steinbach@gmail.com> - 2021-09-22 14:17 +0200
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-22 14:32 +0100
                Re: rational numbers "Alf P. Steinbach" <alf.p.steinbach@gmail.com> - 2021-09-22 16:23 +0200
                Re: rational numbers Paavo Helde <myfirstname@osa.pri.ee> - 2021-09-22 15:18 +0300
                Re: rational numbers "Alf P. Steinbach" <alf.p.steinbach@gmail.com> - 2021-09-22 16:16 +0200
                Re: rational numbers HorseyWorsey@the_stables.com - 2021-09-22 15:15 +0000
                Re: rational numbers "Alf P. Steinbach" <alf.p.steinbach@gmail.com> - 2021-09-22 17:57 +0200
                Re: rational numbers HorseyWorsey@the_stables.com - 2021-09-22 16:05 +0000
                Re: rational numbers Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2021-09-22 14:13 -0700
                Re: rational numbers HorseyWorsey@the_stables.com - 2021-09-23 09:01 +0000
                Re: rational numbers James Kuyper <jameskuyper@alumni.caltech.edu> - 2021-09-23 12:08 -0400
                Re: rational numbers Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2021-09-23 10:55 -0700
                Re: rational numbers Paavo Helde <myfirstname@osa.pri.ee> - 2021-09-22 20:46 +0300
                Re: rational numbers "daniel...@gmail.com" <danielaparker@gmail.com> - 2021-09-22 14:42 -0700
                Re: rational numbers Paavo Helde <myfirstname@osa.pri.ee> - 2021-09-23 09:15 +0300
                Re: rational numbers scott@slp53.sl.home (Scott Lurndal) - 2021-09-22 14:04 +0000
                Re: rational numbers Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2021-09-22 07:18 -0700
                Re: rational numbers Juha Nieminen <nospam@thanks.invalid> - 2021-09-23 07:31 +0000
                Re: rational numbers Paavo Helde <myfirstname@osa.pri.ee> - 2021-09-23 11:05 +0300
                Re: rational numbers Juha Nieminen <nospam@thanks.invalid> - 2021-09-23 08:28 +0000
                Re: rational numbers Paavo Helde <myfirstname@osa.pri.ee> - 2021-09-24 00:51 +0300
                Re: rational numbers Juha Nieminen <nospam@thanks.invalid> - 2021-09-24 04:37 +0000
                Re: rational numbers Branimir Maksimovic <branimir.maksimovic@gmail.com> - 2021-09-24 07:46 +0000
                Re: rational numbers "daniel...@gmail.com" <danielaparker@gmail.com> - 2021-09-24 08:59 -0700
                Re: rational numbers Paavo Helde <myfirstname@osa.pri.ee> - 2021-09-24 22:49 +0300
                Re: rational numbers Branimir Maksimovic <branimir.maksimovic@gmail.com> - 2021-09-25 00:55 +0000
                Re: rational numbers Paavo Helde <myfirstname@osa.pri.ee> - 2021-09-24 12:17 +0300
                Re: rational numbers Juha Nieminen <nospam@thanks.invalid> - 2021-09-27 05:25 +0000
                Re: rational numbers Paavo Helde <myfirstname@osa.pri.ee> - 2021-09-27 11:37 +0300
                Re: rational numbers Juha Nieminen <nospam@thanks.invalid> - 2021-09-28 04:49 +0000
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-23 11:29 +0100
                Re: rational numbers Juha Nieminen <nospam@thanks.invalid> - 2021-09-24 04:38 +0000
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-24 11:15 +0100
                Re: rational numbers Branimir Maksimovic <branimir.maksimovic@gmail.com> - 2021-09-24 10:19 +0000
                Re: rational numbers Juha Nieminen <nospam@thanks.invalid> - 2021-09-27 05:34 +0000
                Re: rational numbers scott@slp53.sl.home (Scott Lurndal) - 2021-09-23 14:07 +0000
                Re: rational numbers Branimir Maksimovic <branimir.maksimovic@gmail.com> - 2021-09-23 14:50 +0000
                Re: rational numbers Juha Nieminen <nospam@thanks.invalid> - 2021-09-20 05:20 +0000
                Re: rational numbers Ian Collins <ian-news@hotmail.com> - 2021-09-24 21:45 +1200
                Re: rational numbers Paavo Helde <myfirstname@osa.pri.ee> - 2021-09-25 16:15 +0300
                Re: rational numbers Juha Nieminen <nospam@thanks.invalid> - 2021-09-27 05:36 +0000
                Re: rational numbers Paavo Helde <myfirstname@osa.pri.ee> - 2021-09-27 11:19 +0300
                Re: rational numbers Ian Collins <ian-news@hotmail.com> - 2021-09-27 21:27 +1300
                Re: rational numbers Paavo Helde <myfirstname@osa.pri.ee> - 2021-09-27 15:49 +0300
                Re: rational numbers Juha Nieminen <nospam@thanks.invalid> - 2021-09-28 04:53 +0000
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-28 10:16 +0100
                Re: rational numbers Juha Nieminen <nospam@thanks.invalid> - 2021-09-29 12:10 +0000
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-29 14:34 +0100
                Re: rational numbers Bart <bc@freeuk.com> - 2021-09-29 15:54 +0100
                Re: rational numbers Paavo Helde <myfirstname@osa.pri.ee> - 2021-09-28 13:23 +0300
                Re: rational numbers Ian Collins <ian-news@hotmail.com> - 2021-09-29 10:34 +1300
                Re: rational numbers Paavo Helde <myfirstname@osa.pri.ee> - 2021-09-29 12:18 +0300
                Re: rational numbers Ian Collins <ian-news@hotmail.com> - 2021-09-29 22:46 +1300
                Re: rational numbers Paavo Helde <myfirstname@osa.pri.ee> - 2021-09-29 13:07 +0300
                Re: rational numbers Paavo Helde <myfirstname@osa.pri.ee> - 2021-10-02 22:57 +0300
                Re: rational numbers Juha Nieminen <nospam@thanks.invalid> - 2021-09-29 12:16 +0000
                Re: rational numbers Paavo Helde <myfirstname@osa.pri.ee> - 2021-09-29 20:15 +0300
                Re: rational numbers Juha Nieminen <nospam@thanks.invalid> - 2021-09-30 04:46 +0000
            Re: rational numbers Ian Collins <ian-news@hotmail.com> - 2021-09-19 11:03 +1200
      Re: rational numbers Juha Nieminen <nospam@thanks.invalid> - 2021-09-19 10:12 +0000
  Re: rational numbers Siri Cruise <chine.bleu@yahoo.com> - 2021-09-23 07:38 -0700
    Re: rational numbers alessandro volturno <alessandro.volturno@libero.it> - 2021-09-24 09:45 +0200
      Re: rational numbers Branimir Maksimovic <branimir.maksimovic@gmail.com> - 2021-09-24 07:50 +0000
      Re: rational numbers David Brown <david.brown@hesbynett.no> - 2021-09-24 10:58 +0200
        Re: rational numbers Siri Cruise <chine.bleu@yahoo.com> - 2021-09-24 02:48 -0700

csiph-web