- 博客(5)
- 收藏
- 关注
原创 Try to run this command from the system terminal. Make sure that you use the correct version of ‘pip
Try to run this command from the system terminal. Make sure that you use the correct version of 'pip' installed for your Python interpreter located at 'C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps\python.exe'.
2023-08-05 11:43:39
1903
1
原创 获取时间和日期
获取时间和日期下面展示一些 内联代码片。<html><head><meta http-equiv="content-type"content = "text/html"/><title>获取当前时间日期</title><!--脚本部分--><script type="text/javascript"> dt = new Date(); what_to_say = "今天是"+dt.getYear()+"
2021-09-27 20:27:20
125
原创 变量命名规则
变量命名规则1. 必须以英文字母a~z(大小写均可),下划线“_”或美元符号“$”开头2. 变量名必须由英文字母a~z(大小写均可),下划线“_”或美元符号“$”或者数字“0~9”组成,不能有其他符号3. 变量名不能是JavaScript的关键字...
2021-09-27 20:16:41
988
原创 JavaScript基础
JavaScript基础在HTML页面嵌入JavaScript脚本的时候,代码中不能出现"</script>"字样浏览器会默认第一个出现的"</script>"就是脚本结束<html><head><meta http-equiv="content-type" content="text/html;"/><title>你好世界</title><!--...
2021-09-27 19:44:30
138
原创 C语言输出字符串中长度最长的连续字母
#include<stdio.h>#include<string.h>int main(){ int alphabetic(char); int longest(char []); int i; char line[100]; printf("input one line\n"); gets(line); printf("The longest word is:"); for(i=longest(line);alphabetic(line[i]);i++)//l
2021-04-05 14:43:24
2384
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人