Search:

Type: Posts; User: Shalom

Search: Search took 0.09 seconds.

  1. [SOLVED] Write a java program to display even numbers between 2 and 200 using netbeans java

    package evennos ;
    public class Evennos {
    int even = 200;
    for(int x=2;x<=even;x+=2)
    if (x%2 ==0) {
    system.out.println("Display even nos between 2 and "+even);
    ...
  2. Replies
    5
    Views
    1,259

    Re: Calculate total earning of a worker

    i want to confirm if it is correct .
    thanks
  3. Replies
    5
    Views
    1,259

    Calculate total earning of a worker

    I did this practice work on my own.
    CALCULATE THE TOTAL EARNING OF A WORKER.
    Total earning of a worker
    Total earning;
    {
    public static void main(string)[] args) {
    //...
Results 1 to 3 of 3