3. Program to accept three Number and Print Largest among them.
class CommandLineArgs
{ public static void main(String args[]) { int a, b, c;
a = Integer.parseInt(args[0]); b = Integer.parseInt(args[1]); c = Integer.parseInt(args[2]);
if (a > b && a > c) { System.out.println("Largest Number is : " + a); } else if (b > c) { System.out.println("Largest Number is : " + b); } else { System.out.println("Largest Number is : " + c); } } }
3. Program to accept three Number and Print Largest among them.
class CommandLineArgs
{ public static void main(String args[]) { int a, b, c;
a = Integer.parseInt(args[0]); b = Integer.parseInt(args[1]); c = Integer.parseInt(args[2]);
if (a > b && a > c) { System.out.println("Largest Number is : " + a); } else if (b > c) { System.out.println("Largest Number is : " + b); } else { System.out.println("Largest Number is : " + c); } } }
Telegram is a free app and runs on donations. According to a blog on the telegram: We believe in fast and secure messaging that is also 100% free. Pavel Durov, who shares our vision, supplied Telegram with a generous donation, so we have quite enough money for the time being. If Telegram runs out, we will introduce non-essential paid options to support the infrastructure and finance developer salaries. But making profits will never be an end-goal for Telegram.
Mr. Durov launched Telegram in late 2013 with his brother, Nikolai, just months before he was pushed out of VK, the Russian social-media platform he founded. Mr. Durov pitched his new appβfunded with the proceeds from the VK saleβless as a business than as a way for people to send messages while avoiding government surveillance and censorship.