for(int i = 1; i <= 100; i++)
{
if(i % 3 == 0)
{
Console.WriteLine(i);
}
}
for(int i = 1; i <= 100; i++)
{
if(i % 3 == 0)
{
Console.WriteLine(i);
}
}
Olá, Camila
Muito bom
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
class Programa
{
static void Main(String args[])
{
for (int i = 1; i < 100; i++ )
{
if (i % 3 == 0)
{
Console.WriteLine(i);
}
}
}
}