Advertisement
Guest User

Untitled

a guest
Aug 15th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. Task 1
  2.  
  3. using System;
  4.  
  5. public class Program
  6. {
  7. public static void Main()
  8. {
  9. int [] arr = new int [20];
  10.  
  11. for ( int i= 0; i<arr.Length; i++)
  12.  
  13. {
  14.  
  15. arr[i]= 5 * i;
  16. Console.Write( arr[i] + " ");
  17.  
  18. }
  19.  
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement