Manish Bhansali has a long and varied career in the IT industry. Manish began their career in 1996 as a Software Engineer at Computer Associates, where they worked on software development projects and developed scheduling software. In 1997, they took on roles as an ERP Consultant at Stopka & Associates and Partner at Computer Sciences Corporation, where they led one of the largest IT Transformation projects undertaken by local government in the United States. In 2006, they became the Director of Internal Business Systems at Move, Inc., where they were recruited to define and implement a scalable back office structure. In 2008, they returned to Computer Sciences Corporation as a Partner and Oracle, Salesforce, and Workday Practice Lead and Transformation Executive. In 2015, they became a Director at CSRA Inc. In 2016, they founded RighIT Solutions LLC, where they serve as CEO and works to establish an employee-focused IT Consulting Company. In 2017, they co-founded SkliQ - The Human Intelligence Cloud, a SaaS platform for organizations of all sizes. In 2018, they became the CTO & Co-Founder of Golden SHERPA.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _02.Max_Method
{
class Program
{
static void Main(string[] args)
{
int a = int.Parse(Console.ReadLine());
int b = int.Parse(Console.ReadLine());
int c = int.Parse(Console.ReadLine());
int max = GetMax(a, b);
max = GetMax(max, c);
Console.WriteLine(max);
}
static int GetMax(int a, int b)
{
if (a >= b)
{
return a;
}
else
{
return b;
}
}
}
}
Sign up to view 1 direct report
Get started
This person is not in any teams