If someone you love is having a tough time right now, there are some things that you can remind them of which will help them trough their difficulties. Whatever you say to someone who is struggling, the most important thing is to ensure your tone of voice and demeanor is appropriate. Remind your loved one of the following things in a warm, encouraging way, and not in a “pull your socks up” way....
Thursday, December 25, 2014
By Sharing News on 6:27 AM
Why are people so unsympathetic when their friends or loved ones suffer from depression? The main reason is that depression is very difficult to fully understand. Another reason is that there is a stigma attached to being depressed. Even though we live in a society which seems to revolve around physical well-being and being upbeat, we don’t want to be reminded of the other side. We want to forget...
Posted in Life Tip | No comments
Monday, December 22, 2014
By Sharing News on 5:53 AM

Write Java program to print the table of
characters that are equivalent to the Ascii codes from 1 to 255.
Code Here :
public static void main(String[] args) {
char Asci=1;
for(int i=1 ; i<=255 ; i++){
System.out.print(i+" "+Asci...
Posted in Java Language | No comments
By Sharing News on 5:48 AM

Write a program that asks the user to type 10
integers and writes the sum of these integers. Using for loop. Total sum of ten integer ( 1+2+3+4+5+6+7+8+9+10=55) .
Code here :
public static void main(String[] args) {
int sum=0;
for(int i=1 ; i<=10 ; i++){
...
Posted in Java Language | No comments
By Sharing News on 5:43 AM

Write a
program that will ask the user to input three integer values from the keyboard.
Then it will print the smallest and largest of those numbers.
Code Here :
public static void main(String[] args) {
int Num1, Num2, Num3, Maxi=0, Mini = 0;
Scanner In = new Scanner(System.in);
...
Posted in Java Language | No comments
By Sharing News on 5:37 AM

Write a program
that will display the calculator menu. The program will prompt
the user to choose the operation choice (from 1 to 5). Then it asks the user to
input two integer vales for the calculation. See the sample below.
Code Here :
public static void main(String[] args) {
int Num1, Num2,...
Posted in Java Language | No comments
By Sharing News on 5:26 AM

Write a program that will ask the user to input n
positive numbers. The program will terminate if one of those number is not
positive...
Posted in Java Language | No comments
Subscribe to:
Posts (Atom)
Popular Posts
-
Here is Java code to find a Grade of Student , we must to input Quiz , Mid Term , and Final Score to see a Result Grade of Student ;) ...
-
Write a program that will ask the user to input three integer values from the keyboard. Then it will print the smallest and...
-
Write a program that will ask the user to input n positive numbers. The program will terminate if one of those number is not posi...
-
Write Java program to print the table of characters that are equivalent to the Ascii codes from 1 to 255. Code Her...
-
This Page is taking about News of Technoloy , Code Programming Languages , and other about IT . Welcome all guy to RPCoder ^^ ,
-
If someone you love is having a tough time right now, there are some things that you can remind them of which will help them trough the...
-
Write a program that asks the user to type 10 integers and writes the sum of these integers. Using for loop. Total sum of te...
-
This Java code is to sum two number , not for sum only and user can use it for Calculator of Two Number ;) . Because it have all ...
About Me
Powered by Blogger.