摘要: #include <stdio.h> int main() { printf("a\bwhat\'s\tyour\tname\n"); int k; printf("%d\n",k=100+300); int a=1,b=0; b=(++a)+ (++a); printf("%d\n",b); ge 阅读全文
posted @ 2021-06-06 09:39 myrj 阅读(184) 评论(0) 推荐(0)
摘要: #include <stdio.h> main() { int a,s,d; s=2,d=3; a=12+(s+2,d+4); printf("%d\n",a); int x,y,z; x=(y=3,(z=++y +2)+5); printf("%d,%d,%d\n",x,y,z); int b=2 阅读全文
posted @ 2021-06-06 09:08 myrj 阅读(317) 评论(0) 推荐(0)