big tree

导航

随笔分类 -  计算机 / C语言

All Test program are from internet.
C# 获取PC Hardware 信息
摘要:借鉴于网络 1 /* 2 * Created by 3 * User: 4 * Date: 2022-06-06 5 * Time: 21: 16 6 * 7 * 8 */ 9 using System; 10 using System.Collections.Generic; 11 using S 阅读全文

posted @ 2022-06-07 19:27 big tree 阅读(123) 评论(0) 推荐(0)

C语言自增(++)和自减(--)
摘要:++ 在前面叫做前自增(例如 ++a)。前自增先进行自增运算,再进行其他操作。 ++ 在后面叫做后自增(例如 a++)。后自增先进行其他操作,再进行自增运算。 自减(--)也一样,有前自减和后自减之分。 1 #include <stdio.h> 2 int main() 3 { 4 int a = 阅读全文

posted @ 2021-03-16 18:41 big tree 阅读(328) 评论(0) 推荐(0)