2020年11月12日
摘要: 1 #include<stdio.h> 2 #include<math.h> 3 int main() { 4 float a, b, c, x1, x2; 5 float delta, real, imag; 6 printf("Enter a, b, c: "); 7 while (scanf_ 阅读全文
posted @ 2020-11-12 21:44 wlj23 阅读(107) 评论(2) 推荐(0)
  2020年10月30日
摘要: 1 #include<stdio.h> 2 int main() { 3 int a = 5, b = 7, c = 100, d, e, f; 4 d = a / b * c; // (a✖b)➗c 5 e = a * c / b; // (a✖c)➗c 6 f = c / b * a; // ( 阅读全文
posted @ 2020-10-30 21:37 wlj23 阅读(119) 评论(2) 推荐(0)
  2020年10月16日
摘要: #include<stdio.h> int main() { int x, y; int r1, r2, r3, r4; x = 1; y = 2; r1 = x + y; r2 = x - y; r3 = x * y; r4 = x / y; printf("r1=%d\n", r1); prin 阅读全文
posted @ 2020-10-16 18:47 wlj23 阅读(40) 评论(0) 推荐(0)
摘要: #include<stdio.h> int main() { int answer; char words[5000]; printf("在家学习让有些人欢喜有些人愁.\n"); printf("1.作为一个宅,社恐,觉得这样很好,有网络,自主学习,很ok。\n"); printf("2.不喜,不喜 阅读全文
posted @ 2020-10-16 18:42 wlj23 阅读(68) 评论(0) 推荐(0)
摘要: #include<stdio.h> int main() { while (0) printf("as sa"); return 0; } 阅读全文
posted @ 2020-10-16 18:34 wlj23 阅读(72) 评论(0) 推荐(0)
摘要: 1 #include <stdio.h> 2 int main() 3 { 4 printf("my stuno is: 202083290301\n"); 5 printf("2020,r u crazy?"); 6 return 0; 7 } #include<stdio.h> int main 阅读全文
posted @ 2020-10-16 18:29 wlj23 阅读(89) 评论(2) 推荐(0)