№1. Составьте программу для нахождения суммы цифр двузначного числа.
Var
S, a, c1, c2 : Integer;
Begin
WriteLn('Введите двузначное число');
Readln(a);
c1:=a div 10;
c2:=a mod 10;
S:=с1+с2;
Write(S);
End.
Классная работа. Решение задач.
№2. Составьте программу, которая меняет местами цифры в двузначном числе
Var
b, a, c1, c2 : Integer;
Begin
WriteLn('Введите двузначное число');
Readln(a);
c1:=a div 10;
c2:=a mod 10;
b:=c2*10+c1;
Write(b);
End.
Классная работа. Решение задач.
№3. Составьте программу, которая выделяет цифры в трехзначном числе и выводит их в столбик.
Var
a, c1, c2, c3 : Integer;
Begin
Readln(a);
c1:=a div 100;
c2:=a div 10 mod 10;
c3:=a mod 10;
WriteLn(c1);
WriteLn(c2);
WriteLn(c3);
End.
Домашнее задание
Параграф 16, упр 3(1,2), стр. 107
Login or Sign Up
Login
Sign Up
Forgot password?
Enter your email and we'll send you reset instructions
Please introduce yourself to proceed
My Uploads
Score:
Embed HTML
Many sites and online services, like Google Maps, suggest HTML code (usually iframes) to embed widgets and content on your page.
You can add such HTML widgets in your quizzes.
Please note:
In case pasted code is not just iframe tag it will be wrapped into HTTPS iframe.
Only HTTPS sources for iframes, styles and javascript links are supported.
Non-HTTPS sources will be blocked by the browser and won't behave properly.