PROGRAMOWANIE:
1. Napisz program, który wypisze 10 kolejnych liczb parzystych, a następnie 10 liczb nieparzystych.
2. Napisz program, który wypisze liczby naturalne mniejsze od 100 i podzielne przez 11.
BŁAGAM POMOCY
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
1.
#include <iosteam>
int main(){
int i;
for(i=1;i<=10;++i){
std::cout<<2*i<<" ";
}
for(i=1;i<=10;++i){
std::cout<<2*i-1<<" ";
}
return 0;
}
2.
#include <iosteam>
int main(){
int i;
for(i=11;i<100;i+=11){
std::cout<<i<<" ";
}
return 0;
}
1.
#include <stdio.h>
int main(){
int i;
int tab[8];
for(i=0;i<8;i++){
printf("%d ",i+10);
tab[i]=i+10;
}
printf("\n\n");
for(i=7;i>=0;i--){
printf("%d ",tab[i]);
}
printf("\n\n");
system("pause");
return 0;
}