首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴Rs1406170125的代码贴全部
#include <stdio.h>
#include <stdlib.h>

int main()
{
    int ch;
    FILE *input= fopen("C:\\Users\\toby\\Desktop\\2012\\input.txt","r");
    FILE *above50= fopen("‪‪C:\\Users\\toby\\Desktop\\2012\\above50.txt","w");
    FILE *below20= fopen("C:\\Users\\toby\\Desktop\\2012\\below20.txt","w");
    while(fscanf(input,"%d",&ch)!=EOF)
    {
            if (ch>50)
......................
阅读全部 | 2018年4月30日 08:57
1
Rs1406170125