会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
innominato
Powered by
博客园
博客园
|
首页
|
新随笔
|
联系
|
订阅
|
管理
2024年11月11日
实验4
摘要: task1.c 1 #include <stdio.h> 2 #define N 5 3 #define M 2 4 5 void test1() { 6 int x[N] = {1, 9, 8, 4}; 7 int i; 8 9 printf("sizeof(x) = %d\n", sizeof(
阅读全文
posted @ 2024-11-11 07:04 归梦不宜秋
阅读(2)
评论(0)
推荐(0)
编辑
2024年10月30日
实验3
摘要: task1.c 1 #include<stdio.h> 2 char score_to_grade(int score); 3 int main(){ 4 int score; 5 char grade; 6 while(scanf("%d", &score) != EOF) { 7 grade =
阅读全文
posted @ 2024-10-30 07:16 归梦不宜秋
阅读(4)
评论(0)
推荐(0)
编辑
2024年10月13日
实验2
摘要: task1.c `#include <stdio.h> include <stdlib.h> include <time.h> define N 5 define N1 397 define N2 476 define N3 21 int main() { int cnt; int random_m
阅读全文
posted @ 2024-10-13 18:20 归梦不宜秋
阅读(4)
评论(0)
推荐(0)
编辑
2024年10月2日
实验1
摘要: task1_1.c, `#include <stdio.h> int main() { int n; for(n=1;n<3;n++){ printf(" O \n"); printf("\n"); printf("I I\n"); } return 0; } ` task1_2.c #includ
阅读全文
posted @ 2024-10-02 16:10 归梦不宜秋
阅读(9)
评论(0)
推荐(0)
编辑