【简答题】在程序中,给出两个整数4和5,计算他们的和,并在屏幕上显示出来。请将程序补充完整。 注意:请勿修改main()主方法和其他已有语句内容,仅在横线处填入适当语句。 ______Add { private int a; private int b; public Add(int n1,int n2) { a=nl; b=n2; } public int getAdd() { return a +b; ...
【简答题】请补充main函数,该函数的功能是:先以只写方式打开文件file.dat,再把字符串S中的字符保存到这个磁盘文件中。请勿改动main函数与其他函数中的任何内容,仅在的横线上填写所需的若干表达式或语句。 注意:部分源程序给出如下。 试题程序: include include define N 100 void main { FILE*f: int i=0: char ch; char s[N]='W...