Home
О нас
Products
Services
Регистрация
Войти
Поиск
975310
@975310
August 2022
1
10
Report
Напишите программы которые определяют
1)что число нечетное и делится на 3;
2)число делится на 4 и оканчивается на 2.
Please enter comments
Please enter your name.
Please enter the correct email address.
Agree to
terms of service
You must agree before submitting.
Send
Answers & Comments
AnonimusPro
Verified answer
1)
Program n1;
var a: integer;
begin
readln(a);
if (a mod 2<>0) and (a mod 3=0) then write('1)true') else write('1)false');
end.
2)
Program n1;
var a: integer;
begin
readln(a);
if (a mod 4=0) and (a mod 10=2) then write('2)true') else write('2)false');
end.
1 votes
Thanks 1
×
Report "Напишите программы которые определяют 1)что число нечетное и делится на 3; 2)чи..."
Your name
Email
Reason
-Select Reason-
Pornographic
Defamatory
Illegal/Unlawful
Spam
Other Terms Of Service Violation
File a copyright complaint
Description
Helpful Links
О нас
Политика конфиденциальности
Правила и условия
Copyright
Контакты
Helpful Social
Get monthly updates
Submit
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
1)Program n1;
var a: integer;
begin
readln(a);
if (a mod 2<>0) and (a mod 3=0) then write('1)true') else write('1)false');
end.
2)
Program n1;
var a: integer;
begin
readln(a);
if (a mod 4=0) and (a mod 10=2) then write('2)true') else write('2)false');
end.