Share all news to all guy ;)

Enter Slide 1 Title Here

Thursday, December 25, 2014

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....
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...

Monday, December 22, 2014

              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...
             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++){        ...
             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);  ...
               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,...
       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...

Popular Posts

Powered by Blogger.