Guest User

Untitled

a guest
Dec 13th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. public class Calculator
  2. {
  3. private double value;
  4.  
  5. public void Calc(int powValue)
  6. {
  7. double a, b, value;
  8. value = Math.Pow(powValue, 2)
  9. // ...
  10. DiplayValue();
  11. }
  12.  
  13. public void DiplayValue()
  14. {
  15. Console.WriteLine("Result: " + value); // always 0
  16. }
  17. }
Add Comment
Please, Sign In to add comment