Advertisement
Levi0227

Exercises

Sep 14th, 2022 (edited)
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.44 KB | Source Code | 0 0
  1. namespace something
  2. {
  3.     class something{
  4.  
  5.      static int n = 2;
  6.         static void exn(){
  7.             Console.WriteLine($"Exercise {n++}.");
  8.         }
  9.  
  10.     static void ex1(){}
  11.     static void ex2(){}
  12.     static void ex3(){}
  13.     static void ex4(){}
  14.     static void ex5(){}
  15.  
  16.     static void Main(string[] args){
  17.             ex1();
  18.             ex2();
  19.             ex3();
  20.             ex4();
  21.             ex5();
  22.             Console.ReadKey();
  23.         }
  24.  
  25.     }
  26. }
Tags: help
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement