From 73c22b77730970bcfa13eedec409c2477453dc5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matev=C5=BE=20Pober=C5=BEnik?= Date: Mon, 6 Nov 2017 17:15:27 +0100 Subject: FKKT: for loop group --- python/problems/for-fkkt/sum_to_n/sl.py | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 python/problems/for-fkkt/sum_to_n/sl.py (limited to 'python/problems/for-fkkt/sum_to_n/sl.py') diff --git a/python/problems/for-fkkt/sum_to_n/sl.py b/python/problems/for-fkkt/sum_to_n/sl.py new file mode 100644 index 0000000..c7c11de --- /dev/null +++ b/python/problems/for-fkkt/sum_to_n/sl.py @@ -0,0 +1,31 @@ +import server +mod = server.problems.load_language('python', 'sl') + + +name = 'Vsota n naravnih števil' +slug = 'Vsota n naravnih števil' + + +description = '''\ +

Napišite program, ki izračuna vsoto prvih n naravnih števil. Število n poda uporabnik. Če uporabnik vpiše 7, mora program izpisati 28, saj je 1 + 2 + 3 + 4 + 5 + 6 + 7 = 28. +
+Primer uporabe:

+ +
Vpiši število: 7
+28
+
+''' + + +plan = [] + +hint = { + 'no_input_call': '''

Za branje uporabi funkcijo input

''', + + 'printing': ['''\ +

Izpiši rezultat.

'''], + + 'final_hint': ['''\ +

Program deluje pravilno!

'''], + +} -- cgit v1.2.1