Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //To create a template for your weekly team meeting that runs once for each week in your 16-week long project.
- using System;
- namespace ForLoop
- {
- class Program
- {
- static void Main(string[] args)
- {
- for (int i =0; i<16; i++){ //increment happens here!
- CreateTemplate(i+1); //Have to input an argument for the method
- //So plus 1 to make the week start from 1 until 16
- }
- }
- static void CreateTemplate(int week)
- {
- Console.WriteLine($"Week {week}");
- Console.WriteLine("Announcements: \n \n \n ");
- Console.WriteLine("Report Backs: \n \n \n");
- Console.WriteLine("Discussion Items: \n \n \n");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement