Skip to main content

Install Nox emulator on Wndows 10 Pc


Nox emulator is a one of best android emulaotr used by many pc users. So this is how I installed Nox in my windows 10 pc. Most of people recomend this emulator for windows 7| 8 | 8.1 | 10


Comments

Popular posts from this blog

Photo + Photoshop

https://www.instagram.com/

Fun @ රූප

Sum the powers 2n of all integers n between two given numbers

/** My Test Scala file**/ package main.scala /** * Created by Dinuka on 4/8/2017. */ object SumBetween extends App{ print ( "Please insert start No :" ) val start = scala.io.StdIn.readInt() print ( "Please insert end No :" ) val end = scala.io.StdIn.readInt() def sum(start:Int,end:Int): Int ={ var sumOfNums = 0 for (i <- start+ 1 until end){ sumOfNums += i*i } sumOfNums } println ( sum ( start , end )) } /** def sum(): Unit ={ print("Please insert start No :") val start = scala.io.StdIn.readInt() print("Please insert end No :") val end = scala.io.StdIn.readInt() var sumOfNums = 0 for (i <- start+1 until end){ sumOfNums += i*i } println(sumOfNums) } **/