2012年7月10日
摘要: #include <stdio.h>int main(void){ int x; x = -3 + 4 * 5 -6; printf("%d\n",x); x = 3 + 4 % 5 - 6; printf("%d\n",x); //How to get it? x = -3 * 4 % - 6 / 5; printf("%d\n",x); x = (7 + 6) % 5 / 2; printf("%d\n",x);} 1 #include <stdio.h> 2 #define PRINT 阅读全文
posted @ 2012-07-10 17:16 abacuspix 阅读(206) 评论(0) 推荐(0)