總網頁瀏覽量

2015年10月14日 星期三

[C/C++] 貼磁磚


題目

有一塊長寬都超過 500 公分的長方形的空地, 希望鋪上正方形的地磚 (邊長不小於 10 公分), 如果沒辦法剛剛好鋪滿的話也不要切割地磚, 裝潢師父可以運用其他方法裝飾沒有鋪滿的地方。 程式輸入兩個整數代表地板的長度與寬度 (單位為公分), 再輸入一個整數代表正方形地磚的邊長 (單位為公分), 程式請計算總共需要幾塊完整的地磚? 請留意測試輸出資料裡的空格、標點符號、還有換列字元,需要完全一樣才會通過測試(這一個練習有三組測試資料,兩組看得到,另外一組你提交之後在結果的網頁裡看得到)

Input :         

1230 2100↵ 
20↵

output:

6405


Input  : 

1140 1980↵ 
20↵

Output:

5643↵ 

----------------------------------------------------------------

#include <stdio.h>
#include <stdlib.h>
#include <iostream>
using namespace std;

int main(void){
    int a = 0, b = 0, c = 0;
    cin >> a;
    cin >> b;
    cin >> c;

    a = a / c;
    b = b / c;
  
    cout << a*b <<"\n";

    system("pause");
    return 0;
}

 





沒有留言:

張貼留言