Skip to content

Instantly share code, notes, and snippets.

@bharathmuddada
Created July 14, 2022 06:01
Show Gist options
  • Save bharathmuddada/208e404f29dc608abc085bae78294c6b to your computer and use it in GitHub Desktop.
Save bharathmuddada/208e404f29dc608abc085bae78294c6b to your computer and use it in GitHub Desktop.
Print a star right angle triangle
public class RightAngleTriangle
{
public static void Main(String[] args)
{
Console.WriteLine("Right angle triangle : ");
int n = 5;
for (int i = 1; i <= 5; i++)
{
for (int j = 1; j <= i; j++)
{
Console.Write("*");
}
Console.WriteLine();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment