Guest User

Untitled

a guest
Dec 11th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.48 KB | None | 0 0
  1. using System;
  2. using System.Text;
  3.  
  4. namespace ConsoleApplication1
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             for (int i = 1; i < 100; i++)
  11.             {
  12.                 // Kollar om det รคr delbart med 10
  13.                 if (i % 10 == 0)
  14.                 {
  15.                     Console.WriteLine( i +  " ");
  16.                 }
  17.                 Console.Write(i+ " ");
  18.             }
  19.  
  20.  
  21.             Console.ReadKey();
  22.         }
  23.     }
  24. }
Add Comment
Please, Sign In to add comment