节点查找-js


父节点查找父节点查找:parentNode 属性返回最近一级的父节点子元素.parentNode案例:<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8&q

广告案例-js


<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>广告案例</title><styl

c语言返回100以内的素数的函数


#include <stdio.h>is_prime(int x) { if(x%2 == 0){ return 0; } else{ return 1; }}int main() { for (int i = 0; i < 10

c语言swap函数


#include <stdio.h>void swap(int *x, int *y) { int tmp = *x; //通过tmp变量存储x的内存地址 *x = *y; //将y的内存地址赋值给x的内存地址,使得x值为y, *y = tmp; //将之前的x的内存地

javascript-DOM-操作表单

笔记 

let btn = document.querySelector('button');let input = document.querySelector('input');btn.onclick = function () { input.value = &q

C-bool


头部加入#include <stdbool.h>之后就可以使用bool和true,false#include <stdio.h>#include <stdbool.h>int main() { bool b = 6 > 5; bool t = t

C语言关系运算


关系运算关系运算的结果

C语言运算符优先级


C语言-浮点数


浮点数 %f整数 %d当浮点数和整数放到一起运算时,C会将整数转换成浮点数,然后进行浮点数的运算 (foot + inch / 12) * 0.3048; (foot + inch / 12.0) * 0.3048;double 变量表示变量是一个浮点数如果声明变量用的是double。那

javascript-DOM-分时问候案例


直接挂代码了<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Co