Young Lee

Young Lee

最新文章

置顶

“The Rope” and “The Stick”

“The Rope” and “The Stick,” together are one of humankind’s oldest “tools.” “The Stick” is for keeping evil away; “The Rope” is for pulling good towar
17
1
2
2023-11-24

C 学习笔记-2.算法

算法:为解决一个问题而采取的方法和步骤,就称为算法。 例子见书P17<2.3> 算法的特性 有穷性 确定性 有零个或者多个输入 有一个或者多个输出 有效性 三种基本结构 1.**顺序结构**(最简单的陈旭结构,按自上而下的顺序执行) 2.**选择结构**<分支结构>(用来控制程序流
10
0
1
2023-11-11

C 学习笔记-1.程序设计与C语言

程序设计与C语言 程序是一组计算机能够识别和执行的指令,用于实现特定目标或解决特定问题的命令序列的集合。 计算机语言:用于人与计算机通信的语言。 为什么需要计算机语言? 使用计算机语言目的就是和计算机沟通,沟通以后就能用计算机做很多事情,更好地控制计算机。使用计算机完成我们的目的。 机器语言 这种计
8
0
0
2023-11-11

对于逻辑运算符理解的误区

今天在写作业时遇到了一个问题,题目是 写一个输入三个整数然后输出最大数的程序 我写的代码是 #include <stdio.h> int main(){ int a,b,; scanf("%d %d %d",&a,&b,&c); if(a>b>c||a>c>b){ pr
9
0
1
2023-11-03

比较大小的简单C程序

记录一下我写了两天的程序😭😭😭😭 #include <stdio.h> int main() { int a,b,c; scanf("%d,%d,%d",&a,&b,&c); if (a>b){ if(a>c){ if(b>c){ printf("%d,%d,
5
0
1
2023-10-25

C中的溢出问题

今天上课做题时遇到了一个问题,运行下面这段代码时会输出负数 #include <stdio.h> int main() { char c1,c2; c1=197; c2=198; printf("c1=%d,c2=%d\n",c1,c2); return 0; } GPT给出的解释是 是
5
0
1
2023-10-23

Vol.5 trying more hard

Today I only have two class. Its all about computer at night we has be trained as usual . tomorrow we will have PE test !!!! have a good night!
5
0
1
2023-10-19

Vol.4 tired day!

Today I have only two classes ,to be the honest I think today is less tired than yesterday but when I set on the table I suddenly lost the power of wr
21
0
1
2023-10-18

Vol.3 Today is so tired

Today is so tired!!afternoon I had full classes after that I have two meeting which is about our college’s The Youth League Committee of the Student U
13
0
1
2023-10-17

Vol.2 Today is so difficult

Today is monday,the first day of the week. Today we learned some professional courses about computer. we learned how to build structure chart ,it can
23
0
1
2023-10-16
阅读更多