题目内容
下面程序的功能是:从键盘输入若干整数,若输入-1则结束输入,将其中的偶数写入文本文件d3.txt中,请填空。#include #include int main(void){int x;;if((fp=fopen("d3.txt","w"))==NULL){ printf("Cannot open file!");exit(0);}scanf("%d",&x);while( ){if(x%2==0) ;;;}fclose(fp);}
查看答案
搜索结果不匹配?点我反馈
更多问题