会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
hr-0120
博客园
首页
新随笔
联系
订阅
管理
2023年6月
实验7
摘要: task4 #include<stdio.h> int main(){ char c; int a=0,b=0,d=0,e=0,s=0; while((c=getchar())!=EOF){ if(c>='a'&&c<='z'||c>='A'&&c<='Z') a++; else if(c>='0'
阅读全文
posted @ 2023-06-14 21:23 贺蓉
阅读(13)
评论(0)
推荐(0)
2023年5月
实验6
摘要: task4 #include <stdio.h> #include<string.h> #define N 100 typedef struct { char num[10]; // 学号 int s1; // 期末成绩 int s2; // 平时成绩 double sum; // 总评 char
阅读全文
posted @ 2023-05-31 23:26 贺蓉
阅读(27)
评论(0)
推荐(0)
实验5
摘要: task1.1 #include <stdio.h> #define N 4 int main(){ int x[N] = {1,9,8,4}; int i; int *p; for(i = 0; i < N; i++) printf("%d", x[i]); printf("\n"); for(p
阅读全文
posted @ 2023-05-10 23:00 贺蓉
阅读(29)
评论(0)
推荐(0)
2023年4月
实验4
摘要: task1.1 #include <stdio.h> #define N 4 int main() { int a[N] = {2, 0, 2, 3}; char b[N] = {'2', '0', '2', '3'}; int i; printf("sizeof(int) = %d\n", siz
阅读全文
posted @ 2023-04-20 14:46 贺蓉
阅读(30)
评论(0)
推荐(0)
实验3
摘要: task1 #include <stdio.h> #include <stdlib.h> #include <time.h> #include <windows.h> #define N 80 void print_text(int line, int col, char text[]); void
阅读全文
posted @ 2023-04-04 22:11 贺蓉
阅读(29)
评论(0)
推荐(0)
2023年3月
实验2
摘要: task1 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define R1 568 #define R2 701 int main() { int number; int i; srand( time(0
阅读全文
posted @ 2023-03-23 15:01 贺蓉
阅读(28)
评论(0)
推荐(0)
实验1
摘要: 任务1 代码1-1 #include <stdio.h> int main() { printf(" 0 \n"); printf("<H>\n"); printf("I I\n"); printf(" 0 \n"); printf("<H>\n"); printf("I I\n"); return
阅读全文
posted @ 2023-03-05 16:50 贺蓉
阅读(27)
评论(0)
推荐(0)
公告