1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Program
{
class Program
{
public static void Main(String[] args)
{
int p, lastInt = 0, input;
Console.WriteLine("NHAP VAO SO HANG CUA TAM GIAC : ");
input = int.Parse(Console.ReadLine());
for (int i = 1; i <= input; i++)
{
for (p = 1; p <= i; p++)
{
if (lastInt == 1)
{
Console.Write("0");
lastInt = 0;
}
else if (lastInt == 0)
{
Console.Write("1");
lastInt = 1;
}
} Console.Write("\n");
}
Console.ReadLine();
}
}
}
|
Đây là kết quả của Chương trình C #:
1
2
3
4
5
6
|
NHAP VAO SO HANG CUA TAM GIAC : 5
1
01
010
1010
10101
|
0 comments:
Post a Comment