Aktywne Wpisy
57_bel_air_fan +469
Zawiera treści NSFW
Ta treść została oznaczona jako materiał kontrowersyjny lub dla dorosłych.
Skopiuj link
Skopiuj linkTa treść została oznaczona jako materiał kontrowersyjny lub dla dorosłych.
Wykop.pl
#informatyka
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("podaj pierwszą liczbę:");
int liczba1 = int.Parse(Console.ReadLine());
Console.WriteLine("Podaj drugą liczbę:");
int liczba2 = int.Parse(Console.ReadLine());
Console.WriteLine();
while(liczba1 < liczba2)
{
Console.WriteLine(liczba1 % 3 ==0);
liczba1++;
}
Console.ReadKey();
}
}
}
Console.WriteLine(liczba1);
for(int i= min; i<=max; i++){
if(i % 3 == 0) Console.WriteLine(i);
}
EDIT: @Eziush mnie wyprzedzil
Console.WriteLine(liczba1 % 3 ==0);
tę linię musisz zmienić. w tym momencie wypisujesz warunek (czyli czy liczba podzielona przez 3 nie ma reszty).
najłatwiej będzie tak:
(pseudokod):
if liczba1 % 3 == 0 then
print liczba1
endif
w php mozesz zrobic cos takiego
Console.WriteLine(liczba1 % 3 ? liczba1 : '');