Smadav 2011 Rev. 8 dirilis dengan berbagai fitur dan penyempurnaan baru yang dikhususkan untuk pemberantasan virus lokal. Fitur-fitur itu seperti Smad-Behavior yang bisa mengenali virus lokal baru yang belum ada di database Smadav dari tingkah lakunya ketika menginfeksi sistem. Smad-Ray yang bisa melakukan scan flashdisk secara otomatis setelah terpasang hanya dalam waktu maksimum 5 detik. Smadav 2011 lebih stabil dan sangat disarankan untuk digabungkan dengan antivirus internasional...
Selasa, 14 Juni 2011
C++ : Algorithm and Fibonacci Series Program
Download source codeANALYSISTribe of the n-th Fibonacci sequence i get with the formula:Fibonacci (n) = Fibonacci (n-1) + Fibonacci (n-2)with initial value for n = 1 and n = 2 valuable 1ALGORITHMFibonacci function (input n: integer): integerDESCRIPTIONif (n = 1) or (n = 2) then the Fibonacci <- 1else Fibonacci <- Fibonacci (n-1) + Fibonacci (n-2)endifdowlo...
Labels:
Pemrograman C++
C++ : Algorithm and Program Interatif and Recursive Function forCalculating the GCD of 2 Bilanga Round Positive
downloadANALYSISIf n is not equal to 0 and m non-negative integers, we can write m =qn + r for a non-negative integers q and r with 0 less the same withsmaller r nFor example:if n = 3, m = 16 then 16 = 5 (3) + 1, ie q = 5 and r = 1if n = 10, m = 3 then 3 = 0 (10) + 3, ie q = 0 and r = 3To find the GCD of two integers, we can use the way of writing theabove. Suppose we want to find the GCD (190, 34)34 | 190 -> 190 = 5 (34) + 20, r = 2020 | 34 -> 34 = 1 (20) + 14, r = 1414...
Labels:
Pemrograman C++
C++ : Algorithm and Program Function Integer Multiplication 2 Using theAddition Operator
downloadANALYSISa x b = a + a + a +...+ a (b times as much)ALGORITHM{Calculated by multiplying a and b using the summation operator}DECLARATIONresults, i: integerDESCRIPTIONresult <- 0for <- 1 to b doresult <- result + atimes <- resultdownlo...
Labels:
Pemrograman C++
C++ : Algorithm and Program Finding The average of n positive integers
downloadANALYSISThe formula for the amount of data on the number of data, with x, is the i-th dataALGORITHM{Given n data later in the search for the average}DECLARATIONi, n, the number, x: integerAverage: realDSKRIPSIread (n)total <- 0for i <- of 1 to n doread (x)total <- total + xendforaverage <- sum / nwrite (average)downlo...
Labels:
Pemrograman C++
Langganan:
Postingan (Atom)
ALL INFORMATION Copyright © 2011 | Template created by O Pregador | Powered by Blogger