+ All Categories

comp1

Date post: 20-Nov-2014
Category:
Upload: franzneri
View: 297 times
Download: 3 times
Share this document with a friend
Description:
 
Popular Tags:
20
http://eglobiotraining.com
Transcript
Page 1: comp1

http://eglobiotraining.com

Page 2: comp1

The first programming source code will show how to compute for the sum of the number entered by the user by using the C language programming.

http://eglobiotraining.com

Page 3: comp1

#include<stdio.h>#include<conio.h>main(){int num,sum=0,i;printf("enter integer:");scanf("%d",&num);for(i=0;i<=num;i++)sum=sum+i;printf("answer is %d",sum);getch();}

http://eglobiotraining.com

Page 4: comp1

The example for this programming source Code is the user enter number 5. So the program will Start to compute from 5 and adding numbers 4, 3, 2 and 1. So the output will be 15.

http://eglobiotraining.com

Page 5: comp1

Here is the example output of theprogramming source code.

http://eglobiotraining.com

Page 6: comp1

The second programming source code will show us an output of a right triangle depending what the user entered in the program and the number of asterisk is depends also on the number that the user entered.

http://eglobiotraining.com

Page 7: comp1

#include<stdio.h>#include<conio.h>int size,j,i;main(){ printf("enter size:"); scanf("%d",&size); for(i=1;i<=size;i++) {for(j=1;j<=i;j++)printf("*");printf("\n");}getch();} 

http://eglobiotraining.com

Page 8: comp1

For example the user entered number 5 in the program. So the programming output will show 5 rows of asterisk starting from 1 and ends with 5 asterisk on the fifth row.

http://eglobiotraining.com

Page 9: comp1

Here is the example output of the programming source code.

http://eglobiotraining.com

Page 10: comp1

The 3rd programming source code will determine if the number that we enter is a prime or not.

http://eglobiotraining.com

Page 11: comp1

#include<stdio.h>#include<conio.h>int r,N,ctr,d;main(){printf("enter number:");scanf("%d", &N);ctr=0;d=1;do {r=N%d; if(r==0) ctr++;d++;}while (d<=N);if(ctr==2)printf("%d:PRIME", N);elseprintf("%d:NOT PRIME",N);getch();}

http://eglobiotraining.com

Page 12: comp1

For example the user input the number 13. The program will start executing if number 13 is prime or not. The output of the programming source code is that it is a prime.

http://eglobiotraining.com

Page 13: comp1

The 4th programming source code will show us the sum of all numbers starting from 1 and ending with 10.

http://eglobiotraining.com

Page 14: comp1

#include<stdio.h>#include<conio.h> main(){ int ctr=1,sum=0;while(ctr<=10){if(ctr%2!=0)sum=sum+ctr;ctr++;}printf("sum of all odd numbers from 1 to 10 is %d",sum);getch();}  

http://eglobiotraining.com

Page 15: comp1

If the user starts the programming source code, the program will automatically calculate the adding oll the odd numbers from 1 to 10 and the sum is 25.

http://eglobiotraining.com

Page 16: comp1

The fifth programming source code shows the sum of two integers and after showing the output, the programming source code also indicates whether you would like to try again or not.

http://eglobiotraining.com

Page 17: comp1

#include<stdio.h>#include<conio.h>main(){int num1,num2,sum;char Resp;do{printf("enter 2 numbers:");scanf("%d %d", &num1, &num2);sum=num1+num2;printf("the sum of %d and %d is %d\n", num1,num2,sum);printf("\n TRY AGAIN [Y/N]?:");scanf("%c",&Resp);} while ((Resp)=='Y');getch();} 

http://eglobiotraining.com

Page 18: comp1

For example for this programming source code:The user inputed integers 13 and 12. So the

program will compute the sum of 13 and 12 and the programming output is 25.

http://eglobiotraining.com

Page 19: comp1

http://www.slideshare.net/franzneri/comp1

http://eglobiotraining.com

Page 20: comp1

SUBMITTED TO: MR. ERWIN GLOBIO

SUBMITTED BY: FRANZ NERI CLEMEÑA

FM09205 W-S 10:30AM-12:00PM

Official Website is http://eglobiotraining.com/

http://eglobiotraining.com


Recommended