Computer Science, asked by rohitchouhan1368, 6 months ago

wap to print first ten multiples of 5 in reverse order

Answers

Answered by sshthakur79
2

Explanation:

for i in range (10,1,-1):

x = i * 5

print (x)

The code is in Python:)

Answered by aryavirbhasin
0
#include
#include
void main()
{
longint sum=0,i,n;
clrscr();
printf("\n Please Give The Value of N: ");
scanf("%ld",&n);
for(i=1;i<=n;i++)
{
printf("\n 5 * %ld = %ld",i,5*i);
}

getch();
}
Similar questions