Untitled
unknown
plain_text
a year ago
1.1 kB
4
Indexable
namespace Polimorfizmi { internal class Program { static void Main(string[] args) { Console.WriteLine("Hello, World!"); Katrori katrori1 = new Katrori(5.5); Rrethi rrethi1 = new Rrethi(5); IMplementClassAbstract imm1 = new IMplementClassAbstract(); Console.WriteLine("Siperfaqja e katrorit eshte: " + katrori1.Siperfaqja()); Console.WriteLine("Siperfaqja e rrethit eshte: " + rrethi1.Siperfaqja()); Console.WriteLine(imm1.Siperfaqja()); Console.WriteLine("Shkruaj nje nr qe deshironi ti gjeni syprinen e katrorit dhe rrethit: "); int nr1 = Convert.ToInt32(Console.ReadLine()); Katrori katrori2 = new Katrori(nr1); Rrethi rrethi2 = new Rrethi(nr1); Console.WriteLine("Siperfaqja e katrorit eshte: " + katrori2.Siperfaqja()); Console.WriteLine("Siperfaqja e rrethit eshte: " + rrethi2.Siperfaqja()); Console.ReadLine(); } } }
Editor is loading...
Leave a Comment