程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> 分支-05. 用天平找小球

分支-05. 用天平找小球

編輯:關於C語言

 1 /*
 2  * B5-分支-05. 用天平找小球(10)
 3  *
 4  *  Created on: 2014年5月28日
 5  *
 6  *     測試通過
 7  */
 8 
 9 #include <stdio.h>
10 #include <stdlib.h>
11 
12 void compare(int* p_A,int* p_B,int* p_C)
13 {
14     if(*p_A==*p_B && *p_A!=*p_C)
15         printf("C\n");
16     if(*p_A==*p_C && *p_A!=*p_B)
17         printf("B\n");
18     if(*p_B==*p_C && *p_B!=*p_A)
19         printf("A\n");
20     exit(1);//異常退出,正常退出0表示EXIT_SUCCESS,1表示EXIT_FAILURE
21 }
22 
23 int main()
24 {
25     void compare(int* p_A,int* p_B,int* p_C);
26 
27     int massA;
28     int massB;
29     int massC;
30     int* p_A=&massA;
31     int* p_B=&massB;
32     int* p_C=&massC;
33 
34 
35     scanf("%i %i %i",&massA,&massB,&massC);
36 
37     printf("p_A=%p,p_B=%p,p_C=%p\n",p_A,p_B,p_C);
38 
39     compare(p_A,p_B,p_C);
40 
41     return 0;
42 }

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved