Computer Science, asked by murmu3901, 2 months ago

write a program to find sum of even number between 12to38​

Answers

Answered by nimil2005
0

Answer:

add all the even numbers between 12 and 38

Answered by satakshighosh777
0

#include<iostream.h>

#include<conio.h>

void main()

{

clrscr();

int i,s=0;

for(i=12;i<=32;i+=2)

s+=i;

cout<<s;

}

Similar questions