《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

欢迎搜索及关注:编程人

相关推荐
原来是猿25 分钟前
蓝桥备赛(13)- 链表和 list(上)
开发语言·数据结构·c++·算法·链表·list
项目申报小狂人38 分钟前
高性能算法NGO!北方苍鹰优化算法(Northern Goshawk Optimization,NGO)
算法·数学建模
且听风吟ayan1 小时前
leetcode day26 重复的子字符串
算法·leetcode·c#
PinkandWhite1 小时前
MySQL复习笔记
数据库·笔记·mysql
仟濹1 小时前
【算法 C/C++】二维差分
c语言·c++·算法
*星星之火*1 小时前
【GPT入门】第9课 思维树概念与原理
gpt·算法·深度优先
肥肠可耐的西西公主1 小时前
前端(AJAX)学习笔记(CLASS 4):进阶
前端·笔记·学习
总斯霖2 小时前
题解:士兵排列
数据结构·c++·算法
稳兽龙2 小时前
P4268 [USACO18FEB] Directory Traversal G
c++·算法·换根dp
亭墨2 小时前
linux0.11内核源码修仙传第五章——内存初始化(主存与缓存)
linux·c语言·驱动开发·学习·缓存·系统架构