微机原理编写源程序题,如何写出cx被8整除的源程序
#include "stdio.h" int main(){ int i; for(i=8;i<=65535;i++){ if(i%8==0){ printf("%d\t",i); } } return 0; }