Programowanko dla chętnych daje dane : Zadanie Napisz program, który dla danego n wypisuje n kolejnych liczb naturalnych niepodzielnych przez 3. Przykład Dla danych wejściowych 7 poprawną odpowiedzią jest 1 2 4 5 7 8 10
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2025 KUDO.TIPS - All rights reserved.
FPC 2.6.0, jednakże pod 2.4.4 także działa.
Link do kodu: -> http://ideone.com/geqbBz <-
Kod:
Var I, N: LongInt;
C : QWord=0;
Begin
Readln(N);
I := 0;
Repeat
C += 1;
if (C mod 3 <> 0) Then
Begin
Write(C, ' ');
I += 1;
End;
Until (I >= N);
End.
#include <iostream>
#include <cstdio>
using namespace std;
int main()
{
int n;
cin>>n;
for(int i=1;n>0;i++)
{
if(i%3!=0)
{
cout<<i<<" ";
n--;
}
}
return 0;
}