Jump to content

Recommended Posts

Posted

I want to sum 2 or more amount in varieable like

$first = 22

$second = 28

$third = 32

I want to sum $first + $second and $second + $third.

Posted
  On 8/16/2019 at 5:22 AM, mikell said:

Either there is some crypto-logic I couldn't understand or it is a joke

$first = 22
$second = 28 
$result = $first + $second
Msgbox(0,"", $result)

:graduated:

Expand  

i really don't know it was working, Because i searched on forum and i found topic like this

 

Posted

Please show your script, or at least some more detail of what your are dealing with.

Do you have variables? Do you want to sum an array or rows and colums in an 2d array?

Scripts & functions Organize Includes Let Scite organize the include files

Yahtzee The game "Yahtzee" (Kniffel, DiceLion)

LoginWrapper Secure scripts by adding a query (authentication)

_RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...)

Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc.

MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times

Posted (edited)

This example displays the sum of each array's row in an appended last column of a 2D array.

#include <array.au3>

Local $aArray = [ _
        ['Alex', 1, 2, 3], _
        ['Bob', 0, "", 9, 5, 12], _
        ['Ted', 10, 9, 5, 17] _
        ]

; ------ The StringRegExpReplace() function below, removes all plus signs, "+", that are not followed by a digit. ---------
Local $s = '(' & StringRegExpReplace(_ArrayToString($aArray, "+", -1, -1, ")&'|'&(", 1), "(\++)(?!\d)", "") & ')'
ConsoleWrite($s & " = " & Execute($s) & @CRLF)

$s = Execute($s)
_ArrayTranspose($aArray)
_ArrayAdd($aArray, $s)
_ArrayTranspose($aArray)
_ArrayDisplay($aArray)

 

Edited by Malkey

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...