"Locate" in the program
#41
Cobol was the quintessential language for numbers.

I use string math, a rather lengthy program I coded for numbers. I also used to use a rounding method for smaller needs, and with _INTEGER64 I now use this...

Code: (Select All)
WIDTH 50, 42
_SCREENMOVE 0, 0
_DELAY .2
add$ = ".00"
a! = .01
FOR i&& = 1 TO 100000000 ' 1-million dollar count.
    a1&& = a! * 100
    add&& = add&& + a1&&
    add$ = LTRIM$(STR$(add&&))
    IF LEN(add$) < 3 THEN
        add$ = MID$(".00", 1, 3 - LEN(add$)) + add$
    ELSE
        add$ = MID$(add$, 1, LEN(add$) - 2) + "." + RIGHT$(add$, 2)
    END IF

    x = LEN(add$): IF LEFT$(add$, 1) = "-" THEN x = x - 1
    j = 4
    DO UNTIL j / 4 >= (x - 3) / 3
        add$ = MID$(add$, 1, LEN(add$) - 3 + 1 - j) + "," + MID$(add$, LEN(add$) - 3 + 1 - j + 1)
        j = j + 4
    LOOP

    PRINT i&&, add&&;
    printx add$

    a$ = ""
    FOR j = 1 TO LEN(add$)
        IF MID$(add$, j, 1) <> "," AND MID$(add$, j, 1) <> "." THEN a$ = a$ + MID$(add$, j, 1)
    NEXT
    IF i&& <> VAL(a$) THEN PRINT a$, VAL(a$): BEEP: SLEEP

    IF i&& < 200 AND i&& MOD 40 = 0 THEN SLEEP ' View a few screens.
NEXT

SUB printx (x$)
    LOCATE , _WIDTH - 2 - LEN(x$)
    PRINT x$
END SUB

Press a key to view 5-screens of results. After that, it loops on its own to 1-million dollars or until you click the "x" to close the program.

Pete
If eggs are brain food, Biden takes his scrambled.
Reply


Messages In This Thread
"Locate" in the program - by Kernelpanic - 06-07-2022, 08:04 PM
RE: "Locate" in the program - by bplus - 06-08-2022, 03:30 PM
RE: "Locate" in the program - by Kernelpanic - 06-08-2022, 05:30 PM
RE: "Locate" in the program - by bplus - 06-08-2022, 06:07 PM
RE: "Locate" in the program - by bplus - 06-08-2022, 07:26 PM
RE: "Locate" in the program - by Kernelpanic - 06-08-2022, 08:39 PM
RE: "Locate" in the program - by RhoSigma - 06-08-2022, 09:49 PM
RE: "Locate" in the program - by Kernelpanic - 06-09-2022, 03:01 PM
RE: "Locate" in the program - by bplus - 06-08-2022, 08:41 PM
RE: "Locate" in the program - by Pete - 06-09-2022, 01:50 AM
RE: "Locate" in the program - by bplus - 06-09-2022, 03:40 AM
RE: "Locate" in the program - by Pete - 06-09-2022, 03:55 AM
RE: "Locate" in the program - by Kernelpanic - 06-09-2022, 03:14 PM
RE: "Locate" in the program - by James D Jarvis - 06-09-2022, 03:16 PM
RE: "Locate" in the program - by Kernelpanic - 06-09-2022, 04:12 PM
RE: "Locate" in the program - by James D Jarvis - 06-09-2022, 04:30 PM
RE: "Locate" in the program - by RhoSigma - 06-09-2022, 07:50 PM
RE: "Locate" in the program - by Kernelpanic - 06-09-2022, 09:16 PM
RE: "Locate" in the program - by Kernelpanic - 06-09-2022, 09:04 PM
RE: "Locate" in the program - by Kernelpanic - 06-09-2022, 04:14 PM
RE: "Locate" in the program - by SMcNeill - 06-10-2022, 04:47 AM
RE: "Locate" in the program - by SMcNeill - 06-10-2022, 05:08 AM
RE: "Locate" in the program - by Kernelpanic - 06-10-2022, 06:29 PM
RE: "Locate" in the program - by bplus - 06-10-2022, 07:42 PM
RE: "Locate" in the program - by Kernelpanic - 06-10-2022, 08:47 PM
RE: "Locate" in the program - by DSMan195276 - 06-10-2022, 11:34 PM
RE: "Locate" in the program - by bplus - 06-10-2022, 09:00 PM
RE: "Locate" in the program - by Kernelpanic - 06-10-2022, 11:15 PM
RE: "Locate" in the program - by Kernelpanic - 06-10-2022, 11:22 PM
RE: "Locate" in the program - by Kernelpanic - 06-10-2022, 11:49 PM
RE: "Locate" in the program - by DSMan195276 - 06-10-2022, 11:57 PM
RE: "Locate" in the program - by bplus - 06-11-2022, 12:10 AM
RE: "Locate" in the program - by Kernelpanic - 06-12-2022, 08:50 PM
RE: "Locate" in the program - by Kernelpanic - 06-12-2022, 08:56 PM
RE: "Locate" in the program - by bplus - 06-12-2022, 09:27 PM
RE: "Locate" in the program - by Kernelpanic - 06-12-2022, 09:54 PM
RE: "Locate" in the program - by bplus - 06-12-2022, 11:16 PM
RE: "Locate" in the program - by Kernelpanic - 06-13-2022, 01:16 PM
RE: "Locate" in the program - by bplus - 06-13-2022, 07:07 PM
RE: "Locate" in the program - by Kernelpanic - 06-13-2022, 08:49 PM
RE: "Locate" in the program - by Pete - 06-14-2022, 06:10 AM



Users browsing this thread: 1 Guest(s)