搜索资源列表
image
- 并行计算程序 Descr iption: This program blurs an image file in a parallelized computation The root process reads the file and distributes a part of the image file to other processes. Each process makes the filter operation on the part of the image
TOP-1500
- 控制程序#include <MEGA8.h> #include TWI.H #define uchar unsigned char #define uint unsigned int #define M62429VolClk PORTC.2 #define M62429Data PORTC.3 #define bp PORTC.1 #define up PORTB.0 #define down PORTD.7 #define power PO
C语言中scanf的使用
- 首先需要#include <stdio.h>int scanf( const char *format, ... );scanf()函数是格式化输入函数,它从标准输入设备(键盘) 读取输入的信息。第一个参数format为一个常量字符串,这个字符串中如果包含‘%’符号则使用后续参数进行匹配如:scanf("%d%d", &a, &b);(First, we need #include <stdio.h>int scanf (const c