Hundred and thousan
Chat with our AI personalities
units tens hundreds
Thousands and Units
Three
In 1 John 2 it states that "many antichrists" have already come, and we don't know how many. But he states that THE antichrist is to come, which Paul confirms as that "man of sin". Now what many people fail to realize is that the word "anti" in antichrist actually translates as "IN PLACE OF". So the main end time antichrist would be someone who puts himself in place of Christ. So to identify who the main end time antichrist is, we need to look for someone who proclaims to be "Christian" but is actually putting himself in place of Christ on earth.
using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { double a, b, c, dis,root1,root2,temp; Console.WriteLine("Enter the value of Cofficients "); Console.WriteLine("Enter the value of Cofficient a "); a = Convert.ToInt32(Console.ReadLine()); Console.WriteLine("Enter the value of Cofficient b"); b = Convert.ToInt32(Console.ReadLine()); Console.WriteLine("Enter the value of Cofficient c"); c = Convert.ToInt32(Console.ReadLine()); dis = b * b - 4 * a * c; Console.WriteLine("Dis is {0} ", dis); if (dis > 0) { temp = Math.Sqrt(dis); root1 = (-b + temp) / 2 * a; root2 = (-b - temp) / 2 * a; Console.WriteLine("First Root is {0} ",root1); Console.WriteLine("Second Root is {0} ",root2); } if (dis == 0) { root1 = -b / 2 * a; Console.WriteLine(" Root is {0} ", root1); } if (dis < 0) { temp = dis; root1 = -b ; root2 = 2 * a; Console.WriteLine("First Root is ({0} + ({1}i))/{2} ", root1,temp,root2); Console.WriteLine("Second Root is ({0} - ({1}i))/{2} ", root1, temp, root2); } Console.ReadLine(); } } }