Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,885 questions

51,811 answers

573 users

How to calculation code execution time in seconds using Java

1 Answer

0 votes
import java.util.concurrent.TimeUnit;

public class MyClass {
    public static void main(String args[]) {
        long start = System.nanoTime();
        
        for (int i = 0; i < 2000000; i++);
            
        long time = System.nanoTime() - start;
        double timeInSeconds = time/1e9;
        
        System.out.println(timeInSeconds);
        
    }
}

/*
run:
   
0.003324676
  
*/

 



answered Jun 1, 2018 by avibootz

Related questions

1 answer 136 views
136 views asked Sep 26, 2021 by avibootz
2 answers 134 views
1 answer 293 views
3 answers 199 views
2 answers 239 views
2 answers 256 views
...