【东华oj】59.核桃的数量

【东华oj】59.核桃的数量_第1张图片
【东华oj】59.核桃的数量_第2张图片
【东华oj】59.核桃的数量_第3张图片
#include 
#include
#include
using namespace std;
struct soldier {
    char name;
    int value;
};
int main() {
    int n;
    int a, b, c;
    while (cin >> a >> b >> c) {
        for (int i = 1; i <= 99999; i++) {
            if (i % a == 0 && i % b == 0 && i % c == 0) {
                cout << i << endl;
                break;
            }
        }
    }

    return 0;
}

你可能感兴趣的:(东华复试oj,c++)