Posts by Roni Antonio • 126 points
4 posts
-
0
votes2
answers34
viewsA: Logic Problem JAVA Clock Program
You can have another function that will serve as a flag: Every time it reaches the value of 12:00, it will call this function: If her previous value is AM, this function will resume PM. If its…
javaanswered Roni Antonio 126 -
0
votes1
answer28
viewsA: Display only after typing negative number
I would replace your while by a while True, and inside it would put an if. n = int(input()) while true: if n<0 for bases in range(3, 10 + 1): convertido = converte(n, bases) print() n =…
-
0
votes1
answer47
viewsA: What are software design artifacts?
I think what you’re looking for is a way to specify requirements, whether they’re functional or non-functional. Since you are studying by a very classical methodology, I recommend taking a look at…
-
1
votes2
answers50
viewsA: "List" remains null after using Python append
Hi, append is sticking a new element (can be a new list) to a current list. To add 3 at the end of the list the command is: t1=[1,2] t1.append(3) print(t1) Now if you want to append one list to the…
pythonanswered Roni Antonio 126