上一页 1 2 3 4 5 6 7 8 ··· 21 下一页
摘要: aarch64汇编指令集 指令集是26个字母,芯片架构则是由这些字母组成的单词,而IP则是由单词组成的文章提纲。 永久的指令集授权,那么自己可以根据这26个字母,随便组成单词,再随便写成文章,自由度非常高。 架构授权,那么只能用固定好的单词,来写文章,不能自己组装出新的单词。 架构和IP,那么就只能 阅读全文
posted @ 2025-04-07 15:28 华腾智算 阅读(38) 评论(0) 推荐(0)
摘要: ‌可以跨平台执行的程序‌通常依赖于特定的技术或框架,这些技术或框架能够在不同的操作系统上运行而不需要修改代码。以下是一些常见的跨平台编程语言和框架: ‌Java‌:Java程序可以跨平台运行的主要原因是它依赖于Java虚拟机(JVM)。Java代码被编译成字节码,然后在JVM上运行,由于每个操作系统 阅读全文
posted @ 2025-04-07 14:49 华腾智算 阅读(62) 评论(0) 推荐(0)
摘要: #include <stdio.h> int main() { if (sizeof(void*) == 8) { printf("64-bit system\n"); } else { printf("32-bit system\n"); } return 0; } 阅读全文
posted @ 2025-04-02 10:48 华腾智算 阅读(8) 评论(0) 推荐(0)
摘要: 字符集和字符编码不是一个概念, 字符集定义了文字和二进制的对应关系,为字符分配了唯一的编号, 而字符编码规定了如何将文字的编号存储到计算机中。 32位平台所有类型的指针的占用空间大小都是4个字节,64位平台所有类型的指针占用的空间大小为8个字节。 二进制(binary),是在数学和数字电路中以2为基 阅读全文
posted @ 2025-04-02 10:34 华腾智算 阅读(7) 评论(0) 推荐(0)
摘要: #include <stdio.h> void printBinary(int num) { for (int i = 7; i >= 0; i--) { printf("%d", (num >> i) & 1); } printf("\n"); } int main() { for(int i = 阅读全文
posted @ 2025-04-02 10:29 华腾智算 阅读(4) 评论(0) 推荐(0)
摘要: #include<stdio.h> int main(){ int a=10; int *a_ptr=&a; printf("%d\n",*a_ptr); } 阅读全文
posted @ 2025-04-02 08:56 华腾智算 阅读(12) 评论(0) 推荐(0)
摘要: #include<stdio.h> int main(){ char str[]="see you"; for(int i=0;i<20;i++){ printf("%s\n",str); } } 阅读全文
posted @ 2025-04-01 16:22 华腾智算 阅读(4) 评论(0) 推荐(0)
摘要: QT5.15.16 阅读全文
posted @ 2025-04-01 15:43 华腾智算 阅读(13) 评论(0) 推荐(0)
摘要: #include<stdio.h> int main(){ int arr[5]; int i=0; for (i;i<=5;i++){ scanf("%d",&arr[i]); } printf("ok\n"); } 阅读全文
posted @ 2025-04-01 15:35 华腾智算 阅读(14) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <math.h> #include <tgmath.h> #include <complex.h> #include <string.h> int main(){ int a=7680; int b=4320; int c=0; c=a*b; 阅读全文
posted @ 2025-03-31 16:37 华腾智算 阅读(15) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <math.h> #include <tgmath.h> #include <complex.h> #include <string.h> #define MAX_DIGITS 1000 typedef struct { int digits[ 阅读全文
posted @ 2025-03-31 16:17 华腾智算 阅读(11) 评论(0) 推荐(0)
摘要: GMP GMP大数库是GUN项目的一部分,诞生于1991年,作为一个任意精度的大整数运算库,它包含了任意精度的整数、浮点数的各种基础运算操作。它是一个C语言库,并提供了C++的包装类,主要应用于密码学应用和研究、互联网安全应用、代数系统、计算代数研究等。 GMP库运行速度非常快,官网上称自己是地球上 阅读全文
posted @ 2025-03-31 15:20 华腾智算 阅读(55) 评论(0) 推荐(0)
摘要: #include<stdio.h> int main(){ int numwws[10]; int i,j; for(i=0;i<10;i++){ numwws[i]=i+9999; } for(j=0;j<10;j++){ printf("numwws[%d]:%d\n",numwws[j]); 阅读全文
posted @ 2025-03-28 16:33 华腾智算 阅读(6) 评论(0) 推荐(0)
摘要: #include <stdio.h> int main() { int i=1; for(i;i<=50;i=i+1){ if(i%2==0&&i%3!=0){ printf("%d\n",i); }else{ continue; } } } 阅读全文
posted @ 2025-03-28 10:11 华腾智算 阅读(13) 评论(0) 推荐(0)
摘要: #include <stdio.h> int main() { int i=1; for(i;i<=10;i++) { printf("哈哈%d\n",i); } } 注意C99写法和其它不一样。 #include <stdio.h> int main() { int i=1; for(i;i<=1 阅读全文
posted @ 2025-03-28 09:06 华腾智算 阅读(5) 评论(0) 推荐(0)
摘要: #define _USE_MATH_DEFINES #include <stdio.h> #include <math.h> #include<stdbool.h> int main() { int a=9; int b=800; while(a<b){ a++; printf("%d\n",a); 阅读全文
posted @ 2025-03-27 17:37 华腾智算 阅读(4) 评论(0) 推荐(0)
摘要: #define _USE_MATH_DEFINES #include <stdio.h> #include <math.h> #include<stdbool.h> int main() { int level=1;//楼层 整型 switch(){ case 1: //必须唯一 printf("到 阅读全文
posted @ 2025-03-27 16:57 华腾智算 阅读(15) 评论(0) 推荐(0)
摘要: #define _USE_MATH_DEFINES #include <stdio.h> #include <math.h> #include<stdbool.h> int main() { double x=0.2; bool is_data=true;//false int a=9; int b 阅读全文
posted @ 2025-03-27 16:41 华腾智算 阅读(3) 评论(0) 推荐(0)
摘要: #define _USE_MATH_DEFINES #include <stdio.h> #include <math.h> #include<stdbool.h> int main() { double x=0.2; bool is_data=true;//false if(is_data){ p 阅读全文
posted @ 2025-03-27 16:23 华腾智算 阅读(13) 评论(0) 推荐(0)
摘要: #define _USE_MATH_DEFINES #include <stdio.h> #include <math.h> int main() { double x = 2.0; double y = 3.0; double angle = M_PI / 4; // 45 degrees int 阅读全文
posted @ 2025-03-27 16:01 华腾智算 阅读(14) 评论(0) 推荐(0)
摘要: #define _USE_MATH_DEFINES #include <stdio.h> #include <math.h> int main() { double x = 2.0; double y = 3.0; // 基本运算 printf("sqrt(%.1f) = %.2f\n", x, s 阅读全文
posted @ 2025-03-27 15:31 华腾智算 阅读(13) 评论(0) 推荐(0)
摘要: #define _USE_MATH_DEFINES #include <stdio.h> #include <math.h> int main() { double x = 2.0; double y = 3.0; // 基本运算 printf("sqrt(%.1f) = %.2f\n", x, s 阅读全文
posted @ 2025-03-27 10:45 华腾智算 阅读(48) 评论(0) 推荐(0)
摘要: // -*- coding: utf-8 -*- #include <stdio.h> #include <math.h> #include <stdlib.h> #include <time.h> int main() { float float_1=11.27; float float_2=13 阅读全文
posted @ 2025-03-26 17:08 华腾智算 阅读(10) 评论(0) 推荐(0)
摘要: // -*- coding: utf-8 -*- #include <stdio.h> #include <math.h> #include <stdlib.h> #include <time.h> int main() { // 初始化随机数生成器 srand((unsigned)time(NUL 阅读全文
posted @ 2025-03-26 16:53 华腾智算 阅读(19) 评论(0) 推荐(0)
摘要: // -*- coding: utf-8 -*- #include <stdio.h> int main() { return 0; } 阅读全文
posted @ 2025-03-26 16:42 华腾智算 阅读(6) 评论(0) 推荐(0)
摘要: C不是CXX,也不是什么CXX子集,C就是C。 要数据容器库,用GLib2。 要图形库,用GTK和IUP库。 要2D绘图,用Cairo和SDL。 要3D绘图,OpenGL和Vulkan都是C API。 要网络编程,用libevent和libev甚至libuv。 要脚本,Lua、Python、PHP都 阅读全文
posted @ 2025-03-26 16:01 华腾智算 阅读(11) 评论(0) 推荐(0)
摘要: #include <stdio.h> int main() { char char_1='A'; printf("%c,%d",char_1,char_1); return 0; } #include <stdio.h> int main() { char char_1='A'; int char_ 阅读全文
posted @ 2025-03-26 15:27 华腾智算 阅读(9) 评论(0) 推荐(0)
摘要: #include <iostream> int main() { #if defined(_WIN32) || defined(_WIN64) std::cout << "This is a Windows system." << std::endl; #elif defined(__linux__ 阅读全文
posted @ 2025-03-25 16:44 华腾智算 阅读(10) 评论(0) 推荐(0)
摘要: 有句话特别好——选择大于努力。很多小镇做题家,努力半辈子,却因信息壁垒,关键时刻选择错误,而使努力白费。而且还没有试错资本(富二代后浪们才有试错资本)。而张雪峰的火爆,是对这个互联网时代最辛辣的讽刺。 各怀鬼胎的众人,在这一刻出奇地统一。 阅读全文
posted @ 2025-03-24 10:53 华腾智算 阅读(14) 评论(0) 推荐(0)
摘要: #include<stdio.h> int main() { printf("12+34=%d",12+34); return 0; } 四则运算:+ - * / % () 编译器的分类:TDM-GCC、MinGW64、Cygwin 编辑器推荐:VI、devC++、Xcode、sublime 变量、 阅读全文
posted @ 2025-03-19 16:48 华腾智算 阅读(3) 评论(0) 推荐(0)
摘要: 当在前端开发中遇到甲方需求不明确的情况时,可以采取以下策略来应对: 主动沟通: 及时与甲方建立沟通渠道,如电话、邮件、在线会议等。 主动询问甲方对项目的具体期望、目标和关键业务点。 提出可能存在的疑问或不明确的地方,请求甲方澄清。 提供原型或示例: 根据初步理解,快速制作低保真的页面原型或简单示例。 阅读全文
posted @ 2025-03-19 09:02 华腾智算 阅读(1264) 评论(0) 推荐(0)
摘要: 1、必须跨平台向下兼容所有操作系统,平台与硬件无关。 2、等级保护级别。 3、通讯接口协议和标准 阅读全文
posted @ 2025-03-19 08:47 华腾智算 阅读(9) 评论(0) 推荐(0)
摘要: cmake_minimum_required(VERSION 3.21) project(my_project) find_package(OpenGL REQUIRED) add_library(glad glad/src/glad.c) target_include_directories(gl 阅读全文
posted @ 2025-03-13 16:25 华腾智算 阅读(19) 评论(0) 推荐(0)
摘要: linux下CUDA和OpenCL 阅读全文
posted @ 2025-03-13 09:31 华腾智算 阅读(5) 评论(0) 推荐(0)
摘要: 在物联网平台领域,ThingsPanel和ThingsBoard各有千秋,为助大家明晰二者差异、精准选型,以下将从多个核心维度展开深度解读: ThingsPanel ThingsBoard 一、开源协议与版本模式 开源协议: ThingsPanel遵循AGPLv3.0协议。 ThingsBoard采 阅读全文
posted @ 2025-03-06 16:06 华腾智算 阅读(289) 评论(0) 推荐(0)
摘要: <template> <div class="person"></div> <h2>姓名{{ person.name }}</h2> <h2>年龄{{ person.age }}</h2> <button @click="changeage">修改</button> </template> <scr 阅读全文
posted @ 2025-03-05 15:36 华腾智算 阅读(10) 评论(0) 推荐(0)
摘要: <template> <div class="person"></div> </template> <script lang="ts" setup name="person"> import { ref } from "vue"; let name = ref("zhangsan") let age 阅读全文
posted @ 2025-03-05 15:26 华腾智算 阅读(5) 评论(0) 推荐(0)
摘要: <template> <div class="person"></div> </template> <script lang="ts" setup name="person"> </script> <style scoped> </style> 阅读全文
posted @ 2025-03-05 15:21 华腾智算 阅读(14) 评论(0) 推荐(0)
摘要: <template> <div class="mylist"> <h1>一辆{{ car.brand }},价值{{ car.price }}</h1> <button @click="changeprice">修改价格</button> <br> <h2>列表</h2> <ul> <li v-fo 阅读全文
posted @ 2025-03-05 14:56 华腾智算 阅读(10) 评论(0) 推荐(0)
摘要: <template> <div class="mylist"> <h1>一辆{{ car.brand }},价值{{ car.price }}</h1> <button @click="changeprice">修改价格</button> <br> <h2>列表</h2> <ul> <li v-fo 阅读全文
posted @ 2025-03-05 14:41 华腾智算 阅读(12) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 ··· 21 下一页
https://damo.alibaba.com/ https://tianchi.aliyun.com/course?spm=5176.21206777.J_3941670930.5.87dc17c9BZNvLL