Question
#include <iostream>
using namespace std;
int main() {
int x = 0, y = 0;
while (x * 7 < 986 && y * 4 <= 876 && x - y > -67) {
x += 2; y += 3;
}
cout << y << endl;
return 0;
}
Jawab: …………………………………………………… {tuliskan output program}