Week 4 Programming Assignment 3 Get link Facebook X Pinterest Email Other Apps - February 15, 2021 n =int(input())count = 1for i in range(1, n+1): for j in range(1, i+1): print(count*count, end=" ") count+=1 print() Get link Facebook X Pinterest Email Other Apps Comments
Week 3 Programming Assignment 2 - February 08, 2021 a=[int(x) for x in input().split()] a.sort() s2=a[1] a.reverse() l2=a[1] print(s2+l2,end="") Special thanks to -Ayush Paul(ECE,1st yr) Read more
Week 3 Programming Assignment 1 - February 08, 2021 N=input() a=[int(i) for i in input().split()] for i in a: if(abs(i)%10!=4): print(i,end=" ") Special thanks to -Ayush Paul(ECE,1st year) Read more
Comments
Post a Comment