C
Programming and Technical
Programming
Technical
pankaj makes a program to print the products of cubes of the first 10 whole numbers.
integer x=0
integer sum=0
Read Solution (Total 1)
-
- int sum=0,r;
for(int i=1;i - 6 years agoHelpfull: Yes(0) No(4)
C Other Question
find the next biggest number
8,4,2,9,6,3
ans:8->9,4->2,2->3,9->,6->8,3->4
integer i = 0
integer sum = 0
while ( i <= 50 )
{
sum = sum + i
-- MISSING STATEMENT 5 --
}
print sum