CARVIEW |
Select Language
HTTP/2 200
date: Sat, 11 Oct 2025 06:25:52 GMT
content-type: text/html; charset=UTF-8
server: cloudflare
x-frame-options: DENY
x-content-type-options: nosniff
x-xss-protection: 1;mode=block
vary: accept-encoding
cf-cache-status: DYNAMIC
content-encoding: gzip
set-cookie: _csrf-frontend=046b5470615d192a6cbf038a13ebf5e3bd9b1bf6c3b499fd98ecfdcdca024c88a%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22_bjewfov3dtWXGoAWqsiMXmuaphph0IL%22%3B%7D; HttpOnly; Path=/
cf-ray: 98cc485fbfdde9c3-BLR
Wage Salary - Pastebin.com
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- USING System;
- USING System.Collections.Generic;
- USING System.Linq;
- USING System.Text;
- USING System.Threading.Tasks;
- namespace ConsoleApp19
- {
- CLASS Program
- {
- static void Main(STRING[] args)
- {
- Doctor d1 = NEW Doctor(1, "Hector", 50000);
- d1.View();
- d1.IncreaseSalary(50);
- d1.View();
- d1.IncreaseSalary(100);
- d1.View();
- d1.IncreaseSalary(200);
- d1.View();
- d1.DecreaseSalary(50);
- d1.View();
- }
- }
- CLASS Doctor
- {
- public INT Id;
- public STRING NAME;
- public double Salary;
- public Doctor(INT id, STRING NAME, double salary)
- {
- Id = id;
- NAME = NAME;
- Salary = salary;
- }
- public Doctor()
- {
- Id = 2018;
- NAME = "Mitsos";
- }
- public Doctor(INT a, INT b ,INT c, STRING d)
- {
- Id = a + b + c;
- NAME = d;
- }
- public void VIEW()
- {
- Console.ForegroundColor = ConsoleColor.Blue;
- Console.WriteLine("Id = " + Id);
- Console.ForegroundColor = ConsoleColor.Yellow;
- Console.WriteLine("Name = " + NAME);
- Console.ForegroundColor = ConsoleColor.Red;
- Console.WriteLine("Salary = " + Salary);
- Console.ForegroundColor = ConsoleColor.White;
- Console.WriteLine("==============================");
- Console.WriteLine();
- }
- public void IncreaseSalary(double percentage) //
- {
- Salary = Salary + Salary * percentage / 100;
- }
- public void DecreaseSalary(double percentage) //
- {
- Salary = Salary - Salary * percentage / 100;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
-
✅⭐ Make $2500 in 15 minutes ✅ NEVER SEEN BEFO...
JavaScript | 9 sec ago | 0.24 KB
-
⭐⭐⭐ G2A Payment Exploit ✅ NEVER SEEN BEFORE ⭐...
JavaScript | 20 sec ago | 0.24 KB
-
⭐✅ Swapzone Glitch ✅ Working⭐⭐⭐ M
JavaScript | 25 sec ago | 0.24 KB
-
⭐✅ MAKE $2500 IN 15 MIN ✅ NEVER SEEN BEFORE ⭐...
JavaScript | 30 sec ago | 0.24 KB
-
✅ Make $2500 in 20 minutes⭐⭐⭐ H
JavaScript | 36 sec ago | 0.24 KB
-
⭐ ✅ Free Products Method ✅ ✅ NEVER SEEN BEFOR...
JavaScript | 39 sec ago | 0.24 KB
-
⭐ G2A Bug ⭐ (Get more on BTC swaps) ✅ NEVER S...
JavaScript | 48 sec ago | 0.24 KB
-
⭐⭐Exchange Exploit⭐⭐ M
JavaScript | 50 sec ago | 0.24 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand