По разделам

 

Решение задачи Integer 6


Дано двузначное число. Вывести вначале его левую цифру (десятки), а затем — его правую цифру (единицы). Для нахождения десятков
использовать операцию деления нацело, для нахождения единиц — операцию взятия остатка от деления.

Код (C/C++)

#include <iostream>
using namespace std;
int main(){
	int n, f, s;
	cout << "Vvedite chislo N: ";
	cin >> n;
	f = int(n/10);
	s = n%10;
	cout << "Desyatki: " << f << endl;
	cout << "Edinitsi: " << s;
	return 0;
}

Код (Python)

import random

N = random.randrange(10,100)
print("N = ", N)
print("Десятки: ", int(N/10))
print("Единицы: ", N%10)
									

Код (Pascal)

program Integer6;
var
  A, Res: Integer;
begin
  Write('Введите двузначное число: ');
  Readln(A);
  Res:=A div 10;
  Writeln('Его левая цифра: ',Res);
  Res:=A mod 10;
  Writeln('Его правая цифра: ',Res);
end.
									




Integer. Абрамян
Integer 1 Просмотров: 11856
Integer 2 Просмотров: 7527
Integer 3 Просмотров: 7956
Integer 4 Просмотров: 36000
Integer 5 Просмотров: 8405
Integer 6 Просмотров: 6935
Integer 7 Просмотров: 6781
Integer 8 Просмотров: 5428
Integer 9 Просмотров: 4548
Integer 10 Просмотров: 6165
Integer 11 Просмотров: 6507
Integer 12 Просмотров: 6926
Integer 13 Просмотров: 6465
Integer 14 Просмотров: 3464
Integer 15 Просмотров: 4390
Integer 16 Просмотров: 3586
Integer 17 Просмотров: 3879
Integer 18 Просмотров: 3538
Integer 19 Просмотров: 5379
Integer 20 Просмотров: 4119
Integer 21 Просмотров: 4467
Integer 22 Просмотров: 3630
Integer 23 Просмотров: 4512
Integer 24 Просмотров: 8379
Integer 25 Просмотров: 3640
Integer 26 Просмотров: 3219
Integer 27 Просмотров: 2980
Integer 28 Просмотров: 3731
Integer 29 Просмотров: 5068
Integer 30 Просмотров: 4630

Комментарии

Чтобы написать комментарии вам нужно войти в систему или зарегистрироваться



Заявка на расчет