标题:帮忙改一下错误,谢谢
只看楼主
cstdio
Rank: 5Rank: 5
来 自:上海市静安区
等 级:贵宾
威 望:15
帖 子:97
专家分:44
注 册:2018-5-30
结帖率:87.5%
已结贴  问题点数:2 回复次数:2 
帮忙改一下错误,谢谢
#include<iostream>
#include<cstring>
#include<cstdlib>
#include<cstdio>
using namespace std;
int play(void){
    system("cls");
    printf("playing sound\a\a\a\a\a\a\n");
    return 0;
}
int file(){
    string a;
    scanf("%s",&a);
    FILE *fp;
    fp=fopen("1.txt","r+");
    //fprintf(fp,"%d",a);/*出现错误        [Error] cannot convert 'const char*' to 'FILE* {aka _iobuf*}' for argument '1' to 'int fprintf(FILE*, const char*, ...)'*/
    fclose(fp);
    return 0;
}
int main(void){
    file();
    play();
    return 0;
}
搜索更多相关主题的帖子: 错误 include int return file 
2018-07-06 10:36
rjsp
Rank: 20Rank: 20Rank: 20Rank: 20Rank: 20
等 级:版主
威 望:507
帖 子:8890
专家分:53117
注 册:2011-1-18
得分:2 
程序代码:
#include <iostream>
#include <fstream>
#include <string>
using namespace std;

int file( void )
{
    string a;
    cin >> a;

    ofstream fp( "1.txt" );
    fp << a;

    return 0;
}

int main( void )
{
    file();
}
2018-07-06 10:47
cstdio
Rank: 5Rank: 5
来 自:上海市静安区
等 级:贵宾
威 望:15
帖 子:97
专家分:44
注 册:2018-5-30
得分:0 
谢谢

import random
i=random.randint(100,100000)
print i
2018-07-06 11:20



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-488420-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 1.993850 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved