#include <stdio.h>
int main (void)
{
int i;
for(i=1;i<=10;i++)
printf("%d ",(i+3)/2);
system("pause");
return 0;
}
The Output is Given Below:
2 2 3 3 4 4 5 5 6 6
c, c++ , java, oracle, database design, c tutorial, c++ tutorial, java tutorial, oracle tutorial, programming, make program easy, c programming, c advance program, java advance program
#include <stdio.h>
int main (void)
{
int i;
for(i=1;i<=10;i++)
printf("%d ",(i+3)/2);
system("pause");
return 0;
}
2 2 3 3 4 4 5 5 6 6
All rights reserved||Using Deluxe Template By Klodian
0 comments:
Post a Comment