fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int x, y; // リンゴの個数(x)、モモの個数(y)
  5. int total_price = 2080; // 合計金額
  6. int total_items = 8; // 合計個数
  7. int price_apple = 230; // リンゴの価格
  8. int price_peach = 310; // モモの価格
  9.  
  10. // 連立方程式を解く
  11. for (x = 0; x <= total_items; x++) {
  12. y = total_items - x; // モモの個数は (8 - x)
  13. if ((price_apple * x + price_peach * y) == total_price) {
  14. printf("リンゴの個数: %d 個\n", x);
  15. printf("モモの個数: %d 個\n", y);
  16. return 0;
  17. }
  18. }
  19.  
  20. // 解が見つからない場合
  21. printf("解が見つかりません。\n");
  22. return 0;
  23. }
  24.  
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
リンゴの個数: 5 個
モモの個数: 3 個