Guest User

Untitled

a guest
May 25th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.45 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace birthday {
  7.     public static class HappyBirthday {
  8.         public static string BirthdayMessage(string personName, int numberOfPresents, bool isHavingParty) {
  9.         return "Happy Birthday " + personName + ".\n" + "Number of presents: " + numberOfPresents.ToString() + ".\n" + personName + " is " + (isHavingParty ? "" : "not") + " having a party.";
  10.     }
  11. }
Add Comment
Please, Sign In to add comment