예제 #1
0
 def test_1(self):
     self.assertEqual(Roman.do_roman_seq(37), ('XXXVII'))
예제 #2
0
 def test_16(self):
     self.assertEqual(Roman.do_roman_seq('123'), ('CXXIII'))
예제 #3
0
 def test_14(self):
     self.assertEqual(Roman.do_roman_seq('12'), ('XII'))
예제 #4
0
 def test_15(self):
     self.assertEqual(Roman.do_roman_seq('243'), ('CCXLIII'))
예제 #5
0
 def test_12(self):
     self.assertEqual(Roman.do_roman_seq(12046), ('Выходит из диапазона'))
예제 #6
0
 def test_13(self):
     self.assertEqual(Roman.do_roman_seq('hello'), ('Это не цифра!'))
예제 #7
0
 def test_10(self):
     self.assertEqual(Roman.do_roman_seq(9 + 1999),
                      ('Выходит из диапазона'))
예제 #8
0
 def test_4(self):
     self.assertEqual(Roman.do_roman_seq(381), ('CCCLXXXI'))
예제 #9
0
 def test_8(self):
     self.assertEqual(Roman(4) + Roman(965), Roman(969))
예제 #10
0
 def test_9(self):
     self.assertEqual(Roman(555) + Roman(1222), Roman(1777))
예제 #11
0
 def test_7(self):
     self.assertEqual(Roman(3) + Roman(165), Roman(168))
예제 #12
0
 def test_6(self):
     self.assertEqual(Roman(34) + Roman(1965), Roman(1999))
예제 #13
0
 def test_5(self):
     self.assertEqual(Roman.do_roman_seq(8), ('VIII'))
예제 #14
0
 def test_2(self):
     self.assertEqual(Roman.do_roman_seq(1990), ('MCMXC'))
예제 #15
0
 def test_11(self):
     self.assertEqual(Roman.do_roman_seq('nechislo'), ('Это не цифра!'))
예제 #16
0
from roman_logic import Roman

seq = input()
print(Roman(seq))
예제 #17
0
 def test_3(self):
     self.assertEqual(Roman.do_roman_seq(765), ('DCCLXV'))