taks kamps

taks kamps

  • NA
  • 39
  • 6.1k

assigning i,j ,k to produce true, true and true

Nov 26 2018 2:28 PM
My code is not working. Please help !
  1. using System;  
  2. namespace HelloWorld  
  3. {  
  4. class Program  
  5. {  
  6. static void Main(string[] args)  
  7. {  
  8. int i, j, k;  
  9. bool a =  
  10. Console.Write((i > j) + ", " + (j < k) + ", " + (j > k - i));  
  11. }  
  12. }  
  13. }  

Answers (2)