Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Task 004, Chapter 1.0
- using System;
- public class TriangleOfStars
- {
- static void Main()
- {
- for(int i = 1; i <= 10; i++)
- {
- for(int j = 1; j <= i; j++)
- {
- Console.Write("*");
- }
- Console.WriteLine();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment