# python 3.6.2
x = int(input('Введите число: '))
i = 1
for i in range(i,x+1):
if i % 3 == 0:
print('фыр')
continue
if i % 5 == 0:
print('быр')
print(i);
// C++
#include <iostream>
using namespace std;
int main()
{
int x;
printf("Введите число: ");
cin >> x;
for (int i = 1; i <= x; i++){
if (i % 3 == 0 & i % 5 == 0){
printf("фырбыр\n");
continue;
}
if (i % 3 == 0){
printf("фыр\n");
if (i % 5 == 0){
printf("быр\n");
printf("%d\n",i);
return 0;
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
# python 3.6.2
x = int(input('Введите число: '))
i = 1
for i in range(i,x+1):
if i % 3 == 0:
print('фыр')
continue
if i % 5 == 0:
print('быр')
continue
print(i);
// C++
#include <iostream>
using namespace std;
int main()
{
int x;
printf("Введите число: ");
cin >> x;
for (int i = 1; i <= x; i++){
if (i % 3 == 0 & i % 5 == 0){
printf("фырбыр\n");
continue;
}
if (i % 3 == 0){
printf("фыр\n");
continue;
}
if (i % 5 == 0){
printf("быр\n");
continue;
}
printf("%d\n",i);
}
return 0;
}
using namespace std;
int main() {
int n;
cin >> n;
for (int i = 1; i < n + 1; i++) {
if (i % 3 == 0) {
cout << "фыр";
}
else if (i % 5 == 0) {
cout << "быр";
}
else if (i % 15 == 0) {
cout << "фырбыр";
}
else {
cout << i;
}
cout << endl;
}
return 0;
}