int i =200;
if( i%100 == 0){
NSLog(@"是100的整數");
}else{
NSLog(@"不是100的整數");
}
int inputMoney =[importTextField.text intValue];
if (inputMoney%100 != 0) {
[YRProgressHUD autoShowHUDAddedTo:self.view withText:@"請輸入金額為100倍的整數"];
return;
}