Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. using System;
  2.  
  3. namespace R2
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. // Declaratie van de variabelen
  10. int intR1, intR2, intS1;
  11.  
  12. // De 2 getallen opvragen
  13. Console.Write("R1: ");
  14. intR1 = Convert.ToInt16(Console.ReadLine());
  15.  
  16. Console.Write("S1: ");
  17. intS1 = Convert.ToInt16(Console.ReadLine());
  18.  
  19. // De som berekenen
  20. intR2 = (intS1 * 2) - intR1;
  21.  
  22. Console.WriteLine("R2 bedraagt " + intR2.ToString());
  23. Console.ReadLine();
  24. }
  25. }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement