Odpowiedź:
#include<iostream>
#include<algorithm>
void fun(int n) {
for(int i = 0; i < n; i++){
std::cout << 2 * (i + 1) << ' ';
}
int main() {
int n;
std::cin >> n;
fun(n);
return 0;
Wyjaśnienie:
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2025 KUDO.TIPS - All rights reserved.
Odpowiedź:
#include<iostream>
#include<algorithm>
void fun(int n) {
for(int i = 0; i < n; i++){
std::cout << 2 * (i + 1) << ' ';
}
}
int main() {
int n;
std::cin >> n;
fun(n);
return 0;
}
Wyjaśnienie: