摘要: 今天看到的很奇特的特性,就记下来了 代码: #include <stdio.h> #include <string.h> #define SQ(y) ((y)*(y)) int main(){ int i=1; while(i<=5){ printf("%d^2 = %d\n", i, SQ(i++ 阅读全文
posted @ 2020-03-12 15:03 sunseeker 阅读(350) 评论(0) 推荐(0) 编辑