米缸虫

导航

2022年12月11日 #

作业题之蜂鸣器

摘要: 使用寄存器,输出440Hz的方波。 #include <avr/io.h>#include <ee1/bit.h>int main(){ set_bit(DDRB, 3); TCCR0A = 0x42; TCCR0B = 0x04; OCR0A = 110;} 阅读全文

posted @ 2022-12-11 09:50 米缸虫 阅读(20) 评论(0) 推荐(0) 编辑

2022年2月17日 #

17.3节练习题

摘要: #include<stdio.h> #include<stdlib.h> int *creat_array(int n , int initial_value ); int main() { int *a, i, n = 10, initial_value = 5 ; a = creat_array 阅读全文

posted @ 2022-02-17 21:35 米缸虫 阅读(30) 评论(0) 推荐(0) 编辑

2022年2月13日 #

16.2练习题

摘要: (a) struct complex { double real, imaginary; };或者trpedef struct{double real, imaginary;}complex;(b) struct complex { double real, imaginary; };complex 阅读全文

posted @ 2022-02-13 13:54 米缸虫 阅读(33) 评论(0) 推荐(0) 编辑

2022年2月8日 #

14.3练习题1

摘要: (a) #include<stdio.h> #define N(x) (x*x*x) int main(){ int x; printf("请输入x的值: "); scanf("%d",&x); printf("x的立方是%d",N(x)); }或者 #include<stdio.h> #defin 阅读全文

posted @ 2022-02-08 19:51 米缸虫 阅读(28) 评论(0) 推荐(0) 编辑

2022年2月6日 #

13.17练习题17

摘要: #include<stdio.h> #include <ctype.h> #include <stdbool.h> bool test_extension(const char *file_name, const char *extension); int main() { const char * 阅读全文

posted @ 2022-02-06 10:39 米缸虫 阅读(23) 评论(0) 推荐(0) 编辑

2022年2月4日 #

13.4练习题5

摘要: #include<stdio.h> #include<ctype.h> #define LEN 20 void capitalize(char a[],int LEN+1 ); int main() { int i; char a[LEN+1] = "Asawdw1123,."; capitaliz 阅读全文

posted @ 2022-02-04 11:22 米缸虫 阅读(23) 评论(0) 推荐(0) 编辑