Advertisement
Guest User

Untitled

a guest
Jul 7th, 2015
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. Console.Write("Masukkan jumlah data: ");
  2. string line = Console.ReadLine();
  3. int jmlData = int.Parse(line);
  4. int r = 0;
  5.  
  6. for (int i = 1; i < 2; i++)
  7. {
  8. Console.Write("Masukkan nilai jari-jari: ");
  9. line = Console.ReadLine();
  10. r = int.Parse(line);
  11.  
  12. double luas = r * r * Math.PI;
  13. Console.Write("Luasnya adalah: " + luas);
  14. }
  15. Console.ReadKey();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement