Advertisement
Guest User

Untitled

a guest
Oct 26th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.08 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Three_Dimensions
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. Console.WriteLine("Input your x");
  14. var g = Console.ReadLine();
  15. int x = Convert.ToInt32(g);
  16.  
  17. Console.WriteLine("Input your y");
  18. var f = Console.ReadLine();
  19. int y = Convert.ToInt32(f);
  20.  
  21. Console.WriteLine("Input your z");
  22. var l = Console.ReadLine();
  23. int z = Convert.ToInt32(l);
  24.  
  25. Console.WriteLine(x + " " + y + " " + z);
  26. Console.ReadLine();
  27.  
  28. Console.WriteLine("Now we are on the second equation. Press Enter");
  29. Console.ReadLine();
  30.  
  31. Console.WriteLine("Input your x");
  32. var p = Console.ReadLine();
  33. int a = Convert.ToInt32(p); // variables a b c
  34.  
  35. Console.WriteLine("Input your y");
  36. var h = Console.ReadLine();
  37. int b = Convert.ToInt32(h);
  38.  
  39. Console.WriteLine("Input your z");
  40. var v = Console.ReadLine();
  41. int c = Convert.ToInt32(v);
  42.  
  43. Console.WriteLine(x + " " + y + " " + z);
  44. Console.WriteLine(a + " " + b + " " + c);
  45. Console.ReadLine();
  46.  
  47. Console.WriteLine("Now we are on the third equation. Press Enter");
  48. Console.ReadLine();
  49.  
  50.  
  51. Console.WriteLine("Input your x");
  52. var plol = Console.ReadLine();
  53. int ab = Convert.ToInt32(plol);
  54.  
  55. Console.WriteLine("Input your y"); //variables ab bb cb
  56. var lol = Console.ReadLine();
  57. int bb = Convert.ToInt32(lol);
  58.  
  59. Console.WriteLine("Input your z");
  60. var olo = Console.ReadLine();
  61. int cb = Convert.ToInt32(olo);
  62.  
  63. Console.WriteLine(x + " " + y + " " + z);
  64. Console.WriteLine(a + " " + b + " " + c);
  65. Console.WriteLine(ab + " " + bb + " " + cb);
  66. Console.ReadLine();
  67.  
  68. Console.WriteLine("Thank you now the process begins");
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75.  
  76. }
  77. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement