Well i think i make a try whats not to try![]()
C++ is by far the most useful language to learn even if you progress onto something else simply because you'll have a much better understanding of how things work. My preferred language is C# followed by Java.
0101001001000101010000010100110000100000010100000101001001001111010001110101001001000001010011010100110101000101010100100101001100100000010000110100111101000100010001010010000001001001010011100010000001000010010010010100111001000001010100100101100100101110Learn real programing,
Do ASM
that is binary....
asm goto facepalm
.data
count dw 0
array dw 50,120,100,40
arraysize = ($-array)/(TYPE array)
sum1 dw 0
sum2 dw 0
.code
start:
mov ecx, count
.while (ecx < arraysize)
.if (array[ecx*2] < 100)
mov ax, array[ecx*2]
add sum1, ax
.else
mov ax, array[ecx*2]
add sum2, ax
.endif
inc ecx
.endw