Guest User

Untitled

a guest
May 24th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace ConsoleApplication1
  7. {
  8. class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. double myVar;
  13. myVar = -0.7;
  14. Console.Out.WriteLine(myVar);
  15.  
  16. if (myVar == -0.7)
  17. {
  18. Console.Out.WriteLine("umm, it stores -0.7 just fine...");
  19. }
  20.  
  21. char[] myChars = new char[ 10 ];
  22. Console.In.Read( myChars, 0, 10 );
  23. }
  24. }
  25. }
Add Comment
Please, Sign In to add comment