im getting sucess.failure, sucess
- using System;
- namespace HelloWorld
- {
- class Program
- {
- static void Main(string[] args)
- {
- int i, j, k;
- i = 10;
- j = 20;
- k = 30;
- if(i <= 10)
- {
- Console.WriteLine("Success");
- }
-
- if(j < 20)
- {
- Console.WriteLine("Failure");
- }
-
- if(i > 5)
- {
- Console.WriteLine("Failure");
- }
-
- if(j > 14)
- {
- Console.WriteLine("Success");
- }
-
- if(k == 14)
- {
- Console.WriteLine("Success");
- }
- }
- }
- }