自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 问答 (2)
  • 收藏
  • 关注

原创 windows编程如何更改窗口图标和光标

windows编程如何更改窗口图标和光标

2022-10-20 00:06:50 406 1

原创 windows编程绘制奥运五环

windows编程绘制奥运五环

2022-10-19 23:55:17 393

原创 windows编程绘制五星红旗

windows编程绘制五星红旗

2022-10-19 23:53:46 673

原创 C语言 出租车计价

出租车计价 #include <stdio.h> #include <stdlib.h> float taximeter(float distance, int stopMinute); int main() { float distance; int stopMinute; while (1) { printf(“请输入行驶的公里数和总计临时停车的时间:\n”); scanf_s("%f%d", &distance, &stopMinute); if (fabs(d

2021-12-27 15:53:26 3044

原创 C 语言 给定数列求和

给定数列的前n项和 #include <stdio.h> #include <stdlib.h> /* *功能: 参数列表: 返回值: / int sum(int numbers, int size, int n); void printInfo(int* number, int size, int n, int ret); int main() { srand(time(NULL)); int nums[] = { 1,5,9,20,48,6,86,34,91 }; int

2021-12-27 15:52:22 748

原创 C语言 字符串的链接

//字符串连接 #include <stdio.h> #include <string.h> int main() { char str1[256]; char str2[256]; char dst[512]; printf("请输入两个字符串:\n"); gets(str1); gets(str2); char* pSrc = str1; char* pDst = dst; while (*pSrc != '\0') *pDst++ = *pSrc++; pSrc = st

2021-12-27 15:50:32 575

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除