По разделам

 

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


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

Код (C/C++)

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

Код (Python)

import random

N = random.randrange(100,1000)
print("Число: ", N)
d1 = int((N-d2*100)/10)
d0 = N%10
print("Единицы: ", d0)
print("Десятки: ", d1)
									

Код (Pascal)

program Integer10;
var
  A, Res: Integer;
begin
  Write('Введите трёхзначное число: ');
  Readln(A);
  Res:=(A mod 10)*10 + (A mod 100) div 10; //*
  Writeln('Первая цифра данного числа является: ',Res);
end.
									

Дополнительно

a  = int(input())
print(a % 10)
print(a % 100 // 10)
									



Integer. Абрамян
Integer 1 Просмотров: 11855
Integer 2 Просмотров: 7526
Integer 3 Просмотров: 7955
Integer 4 Просмотров: 36000
Integer 5 Просмотров: 8405
Integer 6 Просмотров: 6935
Integer 7 Просмотров: 6780
Integer 8 Просмотров: 5428
Integer 9 Просмотров: 4548
Integer 10 Просмотров: 6164
Integer 11 Просмотров: 6507
Integer 12 Просмотров: 6926
Integer 13 Просмотров: 6465
Integer 14 Просмотров: 3464
Integer 15 Просмотров: 4389
Integer 16 Просмотров: 3586
Integer 17 Просмотров: 3879
Integer 18 Просмотров: 3538
Integer 19 Просмотров: 5379
Integer 20 Просмотров: 4119
Integer 21 Просмотров: 4466
Integer 22 Просмотров: 3629
Integer 23 Просмотров: 4511
Integer 24 Просмотров: 8378
Integer 25 Просмотров: 3640
Integer 26 Просмотров: 3219
Integer 27 Просмотров: 2980
Integer 28 Просмотров: 3730
Integer 29 Просмотров: 5068
Integer 30 Просмотров: 4629

Комментарии

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



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