已开具的发票存根联和发票登记簿,应当保存()。
A.3年
B.5年
C.15年
D.永久
参考答案:D
解析:解析:已开发票存根应当保存5年。
下列各项,不支持艾滋病诊断的是()
A.反复出现带状疱疹
B.间歇或持续发热1个月以上
C.头痛,蛛网膜下腔出血
D.口咽念珠菌感染
E.反复出现慢性播散性单纯疱疹感染
有以下程序: #include<iostream> #include<fstream> using namespace std; int main() { fstream file; file.open("abc.txt", ios :: in); if ( !file ) {cout<<"Can not open abc.txt"<<end1;abort(); } char buf[ 80 ]; int i = 0; while (!file.eof()) {file.getline(buf,80);i++; } cout<<"Lines :"<<i<<end1; file.close(); return 0; } 程序实现的功能是 【15】 。