13 Nisan 2012 Cuma

fonksiyon-switch case ile kullanımı

//fonksiyonlar switch case                                                                                                                    
#include <stdio.h>
#include <conio.h>
#include  <stdlib.h>
int hesapla(int x, int y, int z,  char s)
{ x=y=z=0;                        //int s;
      printf("\nbirinci sayiyi giriniz= ");
    scanf("%d",&x);
printf("ikinci sayiyi giriniz= ");
    scanf("%d",&y);
printf("islemi giriniz:");
    s=getche();//scanf("%d",&s);
    switch(s)
    {
case '+': z=x+y; break;//'+' yerine 1
case '-': z=x-y; break;
case '*': z=x*y; break;
case '/': z=x/y; break;
default: printf("Hatali giris...");getch();exit(0);
    } 
printf("\nSonuc=%d",z);
return z;
}
main()
{int a,b,c;//a:birinci sayı b:ikinci s. c:sonuc d:islem
char d;//int d;
      hesapla(a,b,c,d);
          getch();
      }
   

Hiç yorum yok:

Yorum Gönder

 https://bunyaminkaya.com/microsoft-sql-server-tum-surumleri-dogrudan-indirme-linkleri-2008-2012-2014-2016/