[VIEWED 4759
TIMES]
|
SAVE! for ease of future access.
|
|
|
jerrybhoot
Please log in to subscribe to jerrybhoot's postings.
Posted on 10-03-08 2:58
AM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
Dear frens,
Can I get a Java application that finds the total and average of odd numbers from 1 to 15 which must use a counted loop.
Thanks in Advance.
jerry
|
|
|
|
yellow
Please log in to subscribe to yellow's postings.
Posted on 10-03-08 8:42
AM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
...and why is that difficult ? int sum = 0; // initilize sum to 0 // run thru the loop, 1 to 15 times, somehting like ( int i = 0; i<= 15; i++) // now take the Mod of i , if its zero its even and if its 1 its odd. // so add the every time mod i = 1; // someting like if ( mod i = = 1) sum++; // end of loop, problem solved.
|
|
|
Prajapati
Please log in to subscribe to Prajapati's postings.
Posted on 10-03-08 11:26
AM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
Try this one,
1) Initialize sum=0
2)Initialize counter=0
3)Initialize average=0
3)Get the sum from 1 to 15
for(int i=1; i<=15; i++)
{ sum=sum+i;
counter++;
}
4)Get average
average = sum/counter;
Good luck
|
|
|
CT.
Please log in to subscribe to CT.'s postings.
Posted on 10-03-08 2:08
PM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
थिमियाम्ह प्रजापति ख:ला ?
|
|
|
Prajapati
Please log in to subscribe to Prajapati's postings.
Posted on 10-03-08 2:51
PM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
|
|
|
CT.
Please log in to subscribe to CT.'s postings.
Posted on 10-03-08 4:20
PM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
ए!! west coast ए छम्ह निम्ह थिमिया प्रजापति किजापिं दु धैगु ला स्यू, झी गन थें ?
मोहनि नख:या भिन्तुना दु । कूछि भ्वय् बांलाक्क भपिया दिसँ न्है ।
|
|
|
Prajapati
Please log in to subscribe to Prajapati's postings.
Posted on 10-03-08 5:55
PM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
जी वेष्ट कोस्तए मखु , इष्ट कोस्त पाखे लतका | wish you Happy Vijaya Dashmi to u to..
|
|
|
techGuy
Please log in to subscribe to techGuy's postings.
Posted on 10-03-08 6:15
PM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
Try this one,
1) Initialize sum=0
2)Initialize counter=0
3)Initialize average=0
3)Get the sum from 1 to 15
for(int i=1; i<=15; i=i+2)
{ sum=sum+i;
counter++;
}
4)Get average
average = sum/counter;
Good luck
Alchi laagyo
|
|