Imported from: renren.

It is said that this is a problem from interview of Microsoft. Write a program, which makes the CPU usage curve in Windows Task Manager shows a Sin function.

Sine function 1 Sine function 2

The program below is written in java:

public class sincpu {
    private static final int cycle=1024,tick = 256 …