Share all news to all guy ;)

Enter Slide 1 Title Here

Enter Slide 2 Title Here

Enter Slide 3 Title Here

Monday, December 22, 2014

Justin Bieber has been left behind by the Instagram Rapture.

The "Baby" crooner lost a whopping 3.5 million followers after Instagram purged all the spam and deadweight from its site this week. Fake accounts comprised nearly 15% of Bieber's Instagram following.
Instagram went after spam in a major way this week, deleting millions of fake accounts in what has become dubbed the "Instagram Rapture."
It turns out that the celebrities on the Internet are not as famous as we thought. Some of the biggest names in show business shed the largest numbers of fake followers on Instagram, with the Bieb leading the way, according to data compiled by Zach Allia, a software developer.
Ariana Grande -- you've heard of her -- lost 1.5 million followers, or 7% of her total. Kim Kardashian barely qualifies as being famous anymore, after Instagram shed all her fake bits, losing 1.3 million followers, or 5.5% of her total.
Rihanna, perhaps better known as badgirlriri, also lost a ton of fake weight, shedding more than 1.1 million followers, or 8% of her total following on Instagram. Taylor Swiftfared better than a lot of her fellow celebs, losing a mere 725,000, or 4.4%. And Selena Gomez, the Bieb's on-again, off-again girlfriend, lost 1.1 million Instagram followers, shedding 5.7% of her weight.

While the Bieb was hard hit, Instagram itself was the biggest loser, shedding more than 18.8 million followers, or nearly 30% of its total, in the culling.
The social media site, owned by Facebook (FBTech30), announced last week that it has 300 million users -- not including all the spam it eliminated.
Celebrities use to promote their brands and advertise sponsors that endorse them. Accounts with large numbers of followers can score big bucks from advertisers.

Saturday, December 20, 2014




This code is same last post , but it's show Star (pkay) like a picture ;).




    This Code will show you Decreasing Pattern (But It's is a number not *  ).

Here Code :


public static void main(String[] args) {
        for(int i=7 ; i>=1 ;i--)
        {
            for(int j=1 ; j<=i; j++)
                System.out.print(j + " ");
            System.out.println("");
        }
    }
   
}



          This code is show it a picture :)



    About this , it's will find a Maximize of Three Number ;) . The User Need to Input Three Integer and then its will show the Maximize Number :D .

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

public static void main(String[] args) {
        double Num1,Num2,Result=0;
        char op;
       
        Scanner In = new Scanner (System.in);
       
        System.out.print("Enter First Number: ");
        Num1 = In.nextDouble();
       
        System.out.print("Please Choose: ");
        System.out.print("'+','-','*','/','%' : ");
        op = In.next().charAt(0);
       
        System.out.print("Enter Second Number: ");
        Num2 = In.nextDouble();
       
         switch (op) {
            case '+': Result = Num1 + Num2; break;
            case '-': Result = Num1 - Num2; break;
            case '*': Result = Num1 * Num2; break;
            case '/': Result = Num1 / Num2; break;
            default : System.out.printf("Enter Wrong");
        }
        System.out.println("Result: " + Result);
    }
   
}


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 ;) .
You can copy this code to run on your computer :


public static void main(String[] args) {
        double Quiz ,MidTerm,FinalScore,Avg;
        Scanner Output = new Scanner (System.in);
       
        System.out.println("Quiz: ");
        Quiz = Output.nextDouble();
        System.out.println("Mid Term: ");
        MidTerm = Output.nextDouble();
        System.out.println("Final Score: ");
        FinalScore = Output.nextDouble();
       
        Avg = (Quiz + MidTerm + FinalScore);
        System.out.println("Total Average: " + Avg);
       
        if(Avg >=90 && Avg<=100)
            System.out.println("Grade: A");
        else if(Avg >=70 && Avg<90)
            System.out.println("Grade: B");
        else if(Avg >=50 && Avg<70)
            System.out.println("Grade: C");
        else
            System.out.println("GradeF");
               
    }
   
}

Popular Posts

Powered by Blogger.