Posts by Diogo Santiago • 31 points
1 post
-
3
votes4
answers1030
viewsQ: Sum the n odd terms ,using Loop for ,without using list, allowed functions:input,int,print and range
n =(int(input("Digite o número de termos:"))) for i in range(n+n): if i%2>0: print(i) #Não sei como prosseguir depois,como pego esses valores e somo eles…