• 博客园logo
  • 会员
  • 周边
  • 新闻
  • 博问
  • 闪存
  • 众包
  • 赞助商
  • YouClaw
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






huohuohua

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理

2022年6月5日

实验5
摘要: 阅读全文
posted @ 2022-06-05 18:52 火火华 阅读(22) 评论(2) 推荐(0)
 

2022年5月3日

数组
摘要: #include <stdio.h> #define N 4 int main() { int a[N] = {2, 0, 2, 2}; char b[N] = {'2', '0', '2', '2'}; int i; printf("sizeof(int) = %d\n", sizeof(int) 阅读全文
posted @ 2022-05-03 20:46 火火华 阅读(18) 评论(2) 推荐(0)
 

2022年4月21日

实验三
摘要: #include <stdio.h>#include <stdlib.h>#include <time.h>#include <windows.h>#define N 80void printText(int line, int col, char text[]); // 函数声明void prin 阅读全文
posted @ 2022-04-21 14:10 火火华 阅读(14) 评论(2) 推荐(0)
 

2022年4月14日

二
摘要: #include <stdio.h> int main(){ int i, j, k, m; printf("input n:"); scanf_s("%d", &i); for (j = i; j >= 0; j--) { for (k = 0; k < i - j; k++) printf(" 阅读全文
posted @ 2022-04-14 21:20 火火华 阅读(183) 评论(4) 推荐(0)
 

2022年3月29日

实验123456
摘要: #include<stdio.h> #include<math.h> int main() { double x, ans; while (scanf_s("%lf", &x) != EOF) { ans = pow(x, 365); printf("%.2f的365次方:%.2f\n", x, a 阅读全文
posted @ 2022-03-29 17:17 火火华 阅读(48) 评论(3) 推荐(0)