自考新教材-p279_1

Posted duanqibo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自考新教材-p279_1相关的知识,希望对你有一定的参考价值。

源程序:

#include <iostream>

using namespace std;

int main()

{

int x, y;

cin >> x >> y;

freopen("c:\test.txt", "w", stdout); 

if (y == 0)                            

cerr<<"error."<<endl;

else

cout << x << "/" << y << "=" << x / y << endl;

system("pause");

return 0;

}

 运行结果:

输入:9 3

在c盘上产生文本文件test.txt,内容为:9/3=3

以上是关于自考新教材-p279_1的主要内容,如果未能解决你的问题,请参考以下文章

自考新教材-p271_1

自考新教材-p238_1

自考新教材-p352_1

自考新教材-p350_3

自考新教材-p176_5

自考新教材-p90_5