最佳答案:static void Main(string[] args){int a = 0;int[] isprime = { 12, 23, 11, 232, 14,
最佳答案:delay 就是个延时函数,看名字延时单位是 ms就是让电机 motor(r,f,40)这个状态下 800ms
最佳答案:你的程序不完整,我写一段你看看吧#includevoid main(){int year;printf("please input year :n");scan
最佳答案:#include#include#define MAX 40int main(void){FILE *fp;char words[MAX];int wordct
最佳答案:k刚开始没有初值,计算机不知道刚开始要进入哪个switch
最佳答案:你用到了函数sqrt,这个需要有头文件math.h在最上面加上#include 再运行就可以了,即为:#include#include#define s ((a
最佳答案:Dfun的形参表第一个参数是char.第二个参数是floatA、A中调用fun的第一个参数是字符串,和形参表不一致,错误B、fun返回void,不能用于给t赋值