Showing posts with label Project. Show all posts
Showing posts with label Project. Show all posts
Wednesday, September 16, 2015
Analyzing system and specifying the requirements
Analyzing system and specifying the requirements
Analyzing system and specifying the requirements PPT here DOWNLOAD
SHARE BY GK
Computer Knowledge
Analyzing system and specifying the requirements PPT here DOWNLOAD
SHARE BY GK
Computer Knowledge
Tuesday, September 15, 2015
How To Make Simple Calculator in C programming [Source Code]
This is a code made in c program .This program takes an arithmetic operator (+, -, *, /)
Here copy the given code below and paste it in your c program software, check out !/* Source code to create a simple calculator for addition, subtraction, multiplication and division in C programming. */
# include
int main()
{
char o;
float num1,num2;
printf("Enter operator either + or - or * or divide : ");
scanf("%c",&o);
printf("Enter two operands: ");
scanf("%f%f",&num1,&num2);
switch(o) {
case '+':
printf("%.1f + %.1f = %.1f",num1, num2, num1+num2);
break;
case '-':
printf("%.1f - %.1f = %.1f",num1, num2, num1-num2);
break;
case '*':
printf("%.1f * %.1f = %.1f",num1, num2, num1*num2);
break;
case '/':
printf("%.1f / %.1f = %.1f",num1, num2, num1/num2);
break;
default:
/* If operator is other than +, -, * or /, error message is shown */
printf("Error! operator is not correct");
break;
}
return 0;
}
Example :-
Enter operator either + or - or * or divide : -
Enter two operands: 3.4
8.4
3.4 - 8.4 = -5.0
Enter two operands: 3.4
8.4
3.4 - 8.4 = -5.0
SHARE BY GK
INPUT OUTPUT DEVICES FOR COMPUTER
INPUT OUTPUT DEVICES FOR COMPUTER
INPUT OUTPUT DEVICES FOR COMPUTER PPT DOWNLOAD
SHARE BY GK
Computer Knowledge
INPUT OUTPUT DEVICES FOR COMPUTER PPT DOWNLOAD
SHARE BY GK
Computer Knowledge
Subscribe to:
Posts (Atom)