2012-01-25 83 views

回答

0

您的意思是modulo operation
嘗試使用fmod()(不要忘記#IMPORT <tgmath.h>)

float val = fmod(700, 180); // val would be '160' 
相關問題