To generate the series 1+3+5+7+... using C program
Answers were Sorted based on User's Feedback
Answer / s.vyasaraj
#include<stdio.h>
#include<conio.h>
void main()
{
int n,i=1,sum=0;
clrscr();
printf("enter the value for n:");
scanf("%d",&n);
while(i<=n)
{
sum=sum+i;
i=i+2;
}
printf("the series is =%d");
getch()
}
| Is This Answer Correct ? | 263 Yes | 165 No |
C++
void main()
{
int i,n,sum=0;
cout<<"N=";
cin>>n;
for(i=1;i<=n;i=i+2)
sum=sum+i;
cout<<"\n1+3+5+7+....+"<<n<<"="<<sum;
}
C program....
void main()
{
int i,n,sum=0;
printf("N=");
scanf("%d",&n);
for(i=1;i<=n;i=i+2)
sum=sum+i;
printf("\n1+3+5+7+....+%d=%d",n,sum);
}
| Is This Answer Correct ? | 73 Yes | 37 No |
Answer / mazharul haque
#include<stdio.h>
#include<conio.h>
void main()
{
int n,i,s=0;
printf("ENTER A RANGE ");
scanf("%d",n);
for(i=1; i<=n; i=i+2)
{
s=s+i;
printf("%d+",i);
}
printf("=%d",s);
getch();
}
| Is This Answer Correct ? | 46 Yes | 24 No |
Answer / mazharul haque
#include<stdio.h>
#include<conio.h>
void main()
{
int n,i,s=0;
printf("ENTER A RANGE ");
scanf("%d",& n);
printf("1");
for(i=3; i<=n; i=i+2)
{
s=s+i;
printf("+%d",i);
}
printf("=%d",s+1);
getch();
}
| Is This Answer Correct ? | 26 Yes | 11 No |
Answer / naresh kumar
In the answer Printf function is worng here the value for %
d is not mentioned it would like
printf("the series is =%d", sum);
| Is This Answer Correct ? | 36 Yes | 22 No |
#include"stdio.h"
#include"conio.h"
void main()
{
int s=0;
for(int i=1;i<100;i++)
{
if(i%2==0)
continue;
s=s+i;
}
printf("The answer is...%d",s);
getch();
}
| Is This Answer Correct ? | 35 Yes | 21 No |
Answer / @pravin.08
main()
{
int i=1,n;
printf("enter n ");
scanf("%d",&n);
while(i<=n)
{
printf("%d+",i);
i+=2;
}
}
| Is This Answer Correct ? | 38 Yes | 26 No |
Answer / nagarajan
Simplest method to do it ..
for(int a=0;a<10;a++){
(a&1)?printf("%d\n",a):printf("\n");
}
| Is This Answer Correct ? | 16 Yes | 7 No |
Answer / gaurav pitaliya
#include<stdio.h>
#include<conio.h>
void main()
{
int i,s=0;
clrscr();
for(i=0; i<=10; i++)
{
s=s+(2*i)+1;
}
printf("The Sum of series is= %d",s);
getch();
}
| Is This Answer Correct ? | 20 Yes | 14 No |
Answer / aoyn
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int i,n,sum=0;
cout<<“1+2+3+……+n”;
cout<<“nEnter the value of n:”;
cin>>n;
for(i=1;i<=n;++i)
sum+=i;
cout<<“nSum=”<<sum;
getch();
}
| Is This Answer Correct ? | 8 Yes | 4 No |
write a profram for selection sort whats the error in it?
Declaration of Cube Guys please help me.. Is this a right way to declare cube.? If i Compile it. It Says: Cube undeclared what should i do? Please help \thanks in advanced #include<stdio.h> #include<math.h> #include<conio.h> main( ) { float x,y; while(x++<10.0) { printf("Enter Number:"); scanf("%d", &x); y = cube(x); printf("%f %f %f \n", x,pow(x,2),y); cube(x); } { float x; float y; y = x*x*x; } getch(); return (y); }
How to create a program that lists the capital country when told what the original country is? (Terribly sorry, I'm a novice programmer and would appreciate any help ;). Cheers, Alexxis
void main() { for(int i=0;i<5;i++); printf("%d",i); } What is the output?..
32 Answers College School Exams Tests, CTS, HCL, iGate, SmartData,
what is meant for variable not found?
#include<stdio.h> void main() { int i=1; printf("%d%d%d",i++,++i,i); }
What is the code for following o/p * * * * * * * * * * * * * * * *
I am using Qt 5.6 during compilation it stops and gives error about Qmake The process "C:QtQt5.6.35.6.3msvc2015_64inqmake.exe" crashed. Error while building/deploying project untitled1 (kit: Desktop Qt 5.6.3 MSVC2015 64bit) When executing step "qmake"
Given an int variable n that has already been declared and initialized to a positive value, and another int variable j that has already been declared, use a do...while loop to print a single line consisting of n asterisks. Thus if n contains 5, five asterisks will be printed. Use no variables other than n and j .
difference between c/c++ programing language? what is necessesity of c++ when existing c programing language?
I'm having trouble with coming up with the correct code. Thank You!! The assignment was to write a program using string functions that accepts a price of an item and displays its coded value. The base of the keys: X C O M P U T E R S 0 1 2 3 4 5 6 7 8 9 Sample I/O Dialogue: Enter Price: 489.50 Coded Value: PRS.UX
I can not get my C++ program to work right. It is supposed to tell if a word is a palindrome or not, but it only tells thet the word is not a palindrome. And I can't fix it.