资 源 简 介
/ * mustafasırrıinci * /
#include < stdio.h >
#include < stdlib.h >
#include < math.h >
int main ()
{
浮 int1 int2,结果 ;
char 操作 ;
printf("CALCULATORn") ;
开始:
printf ("nnEnter 两个整数 please.n") ;
printf("1.integer:") ;
scanf ("%f"& int1) ;
printf("2.integer:") ;
scanf ("%f"& int2) ;
选择:
printf ("nenter 操作的符号。") ;
printf ("naddition: + nsubtraction:-nmultiplication: * ndivision: /nexponention: ^ nto 退出:! n") ;
scanf ("%s"& 操作) ;
虽然 (操作! = "!")
{
switch(operation)
{
案件 "+":
结果 = int1 + int2 ;
打破 ;
案件 "-":
结果 = int1-int2 ;
打破 ;
案件 " *":
结果 = int1 * int2 ;
打破 ;