http://e-tutor.itsa.org.tw/e-Tutor/mod/programming/view.php?a=1005
TODO
#include
#include
using namespace std;
int main(){
int a,b,c;
char str[256]="";
char *temp;
while(cin >> str){
// 處理輸入
temp = strtok(str,",");
a = atoi(temp);
for(int i = 0 ; i < 2 ; i++){
temp = strtok(NULL,",");
if(i==0){
b = atoi(temp);
}else if(i==1){
c = atoi(temp);
}
}
// 計算答案
for(int i = 0 ; i <= c/a ; i++){
if((c-a*i) % b == 0)
cout << i << "," << (c-a*i) / b << endl;
}
}
}