1. 程式人生 > >條件選擇語句if else switch

條件選擇語句if else switch

	int choice;
	printf("請輸入中獎號碼:");
	scanf("%d", &choice);
	switch (choice) //choice 只能是整型或者字元型
	{
	case 5:  //優化處理 將概率高的情況放在判斷的頂端
		printf("謝謝惠顧\n");
		break;
	case 4:  // case後接常量或者常量表達式(如1 + 9) 但是case之間不能重複
		printf("恭喜你獲得紀念品\n");
		break;
	case 3:
		printf("恭喜你獲得三等獎\n");
		break;
	case 2:
		printf("恭喜你獲得二等獎\n");
		break;
	case 1:  
		printf("恭喜你獲得一等獎\n");
		break;  
	default:
		printf("空白\n");
		break;
	}