Advertisement
Guest User

Untitled

a guest
Jul 28th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.60 KB | None | 0 0
  1. Console.WriteLine("NCEA Level: ");
  2. string level = Console.ReadLine();
  3. Console.WriteLine("Chapter Number: ");
  4. string number = Console.ReadLine();
  5. Console.WriteLine("Parent Topic: ");
  6. string lgtopic = Console.ReadLine();
  7. Console.WriteLine("Child Topic: ");
  8. string smtopic = Console.ReadLine();
  9.  
  10. char first = lgtopic[0];
  11.  
  12. lgtopic = lgtopic.Replace(" ", "%20");
  13. smtopic = smtopic.Replace(" ", "%20");
  14.  
  15. Console.WriteLine("URL: www.scipad.co.nz/2014%20Answers%20Flip%20book/Level%20" + level + "%20" + lgtopic + "/" + first + number + "/" + first + number + "%20" + smtopic + ".html");
  16. Console.ReadLine();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement