会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
pengzhizhen666
博客园
首页
新随笔
联系
订阅
管理
1
2
下一页
2022年6月11日
shiyan6
摘要: #include <stdio.h> #define N 4 int main() { int x[N] = {1, 9, 8, 4}; int i; int *p; for(p=x; p<x+N; ++p)printf("%d", *p);printf("\n"); return 0; }2004
阅读全文
posted @ 2022-06-11 12:04 车马萧萧
阅读(36)
评论(3)
推荐(0)
2022年6月7日
实验5
摘要: #define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #define N 5 #define M 80 typedef struct { char name[M]; char author[M]; } Book; int main() { Book x[
阅读全文
posted @ 2022-06-07 01:30 车马萧萧
阅读(37)
评论(3)
推荐(0)
2022年5月6日
实验4
摘要: #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)); pr
阅读全文
posted @ 2022-05-06 16:51 车马萧萧
阅读(36)
评论(3)
推荐(0)
2022年4月21日
实验3
摘要: #include<stdio.h> #include<stdlib.h> #include<time.h> #include<windows.h> #define N 80 void printtext(int line, int col, char text[]); void printspace
阅读全文
posted @ 2022-04-21 20:01 车马萧萧
阅读(49)
评论(3)
推荐(0)
2022年4月16日
实验2
摘要: 恢复内容开始 #define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #include<time.h> #define N 5 int main() { int grade, number; int i; srand(time(0)); for (i =
阅读全文
posted @ 2022-04-16 10:35 车马萧萧
阅读(42)
评论(3)
推荐(0)
2022年3月24日
task2--3
摘要: #include<stdio.h> #include<math.h> int main() { double F, C; while (scanf("%lf", &C) != 0) { F = 9 * C / 5 + 32; printf("摄氏度C=%.2f时,华氏度F=%.2f", C, F);
阅读全文
posted @ 2022-03-24 08:24 车马萧萧
阅读(28)
评论(0)
推荐(0)
task2--2
摘要: #include<stdio.h> #include<math.h> int main() { double x, ans; while (scanf("%lf", &x) != 0) { ans = pow(x, 365); printf("%.2f的365次方:%.2f\n", x, ans);
阅读全文
posted @ 2022-03-24 08:18 车马萧萧
阅读(29)
评论(0)
推荐(0)
task--6
摘要: #include<stdio.h> int main() { int answer; char words[5000]; printf("网课学习让一些人欢喜一些人忧。\n"); printf("1.作为喜欢学习且自律的人,觉得这样很好,有网络自主学习,很ok。\n"); printf("2.不喜,
阅读全文
posted @ 2022-03-24 08:03 车马萧萧
阅读(34)
评论(0)
推荐(0)
task--5
摘要: #include<stdio.h> int main() { char ans1, ans2; printf("第三章认真学完了吗?(输入Y或y表示认真学完了一遍,输入N或n表示没有):"); ans1 = getchar(); getchar(); printf("动手敲代码实践了吗?(输入Y或y
阅读全文
posted @ 2022-03-24 07:37 车马萧萧
阅读(36)
评论(0)
推荐(0)
2022年3月23日
task--4
摘要: #include<stdio.h> int main() { int age1, age2; char gender1, gender2; scanf("%d%c%d%c", &age1, &gender1, &age2, &gender2); printf("age1= %d,gender1= %
阅读全文
posted @ 2022-03-23 23:32 车马萧萧
阅读(25)
评论(0)
推荐(0)
1
2
下一页
公告