《Programming Abstractions In C》阅读笔记p69-p71

今日完成《Programming Abstractions In C》阅读P69-p71。

一、技术总结

涉及到的技术知识点有"symbolic constant","Array declaration","Array selection"。

c 复制代码
#include <stdio.h>
#define  NJudges 5

int main(int argc, char const *argv[])
{
    // Array declaration p69: type name[size];
    double scores[NJudges]; // 为了方便后续修改,所以数组的大小声明为symbolic constant

    // Array selection p70: array[index]
    scores[0] = 9.2;
    scores[0] = 9.9;
    scores[0] = 9.7;
    scores[0] = 9.0;
    scores[0] = 9.5;

    return 0;
}

二、英语总结

1、 pictorially

pictorial > pictorially:pictorius(of a painter) + -al(of, like, related to pertain to)。所以,pictorially的意思是in a way that related to pictures or photographs(图像化地,以绘画的方式)。

2、 gymnastics

phicical exercise that increase th body's strength, balance and ability to move gracefully(体操)。

3、 figure skating

a type of skating that involves circular patterns and often includes jumps(花样滑冰)。

4、 effective size

effective 在这里的意思是:in fact,所以 effective size的意思是"实际大小","有效大小"。

参考资料:英语词根解析:Etymonline - Online Etymology Dictionary

欢迎搜索及关注:编程人

相关推荐
dragoooon3438 分钟前
[优选算法专题六.模拟 ——NO.40~41 外观数列、数青蛙]
数据结构·算法·leetcode
小刘爱玩单片机1 小时前
【stm32协议外设篇】- PAJ7620手势识别传感器
c语言·stm32·单片机·嵌入式硬件
徐新帅1 小时前
CCF-GESP 等级考试 2025年3月认证C++一级真题解析
算法
陌路201 小时前
S16 排序算法--堆排序
算法·排序算法
烛衔溟1 小时前
C语言算法:排序算法入门
c语言·算法·排序算法·插入排序·冒泡排序·选择排序·多关键字排序
一匹电信狗1 小时前
【C++】封装红黑树实现map和set容器(详解)
服务器·c++·算法·leetcode·小程序·stl·visual studio
Laity______1 小时前
指针(2)
c语言·开发语言·数据结构·算法
是苏浙2 小时前
零基础入门C语言之C语言实现数据结构之顺序表经典算法
c语言·开发语言·数据结构·算法
郭庆汝2 小时前
(二)自然语言处理笔记——Seq2Seq架构、注意力机制
人工智能·笔记·自然语言处理
Jerry丶Li2 小时前
二十七、通信接口
c语言·stm32·单片机·嵌入式硬件