题库分类
网课答案
APP
退出
登录
注册
财会类
银行业专业人员(初级)
注册税务师(CTA)
注册资产评估师
中级会计职称
中级经济师
初级会计职称
注册会计师(CPA)
中级统计师
初级统计师
会计从业证
理财规划师
价格鉴证师
初级经济师
统计从业资格
中级审计师
公务员
公务员(国考)
公务员(省考)
军转干
警察招考
公选
公务员网络培训
国家电网
执法资格
军队文职
特岗教师
税务稽查
公安消防
事业单位
事业单位招聘
事业单位工勤人员
职业资格
证券从业资格
教师资格
社会工作者
导游资格
管理咨询师
期货从业资格
企业法律顾问
司法考试
人力资源
秘书资格
心理咨询师
营销师
国际商务
公共营养师
行政执法资格
行业知识
医疗/健康
法律法规
考古/收藏
社会科学
管理/战略
教育/培训
创业/投资
文体/艺术
市场/营销
工程/建筑
媒体/传播
生活/时尚
理财/金融
情感/心理
财会/税务
医卫类
药学(中级)
主管护师 (中级)
内科主治
执业药师
临床执业医师
护士资格证
药学(师)
中医助理医师
中西医结合执业医师
口腔助理医师
临床助理医师
中医执业医师
外科主治
妇产科主治
初级护师
建筑工程类
一级建造师
二级建造师
安全工程师
监理工程师
咨询工程师
造价工程师
房地产估价师
土地估价师
城市规划师
投资项目管理
结构工程师
房地产经纪人
初级质量工程师
助理造价工程师
物业管理师
外贸类
报关员
物流师
报检员
单证员
外销员
跟单员
国际商务师
货运代理
当前位置:
首页
>
超星
>
最后一次作业new
填空题
写出下列程序的执行结果:#include
#include
#include
#include
//处理异常;using namespace std;istream &f(istream &in) {//不能拷贝IO对象, 不能将形参或返回类型设置为流类型;//进行IO操作的函数通常以引用方式传递和返回值; string v; while (in >> v, !in.eof()) {//直到遇到文件结束符才停止读取; if (in.bad()) {//不可恢复的错误, IO流崩溃; throw runtime_error("IO流错误");//抛出异常; } if (in.fail()) {//可以恢复的错误;//比如输入类型不匹配; cerr << "数据错误, 请重试: " << endl; in.clear();//将in中所有条件状态位复位, 将流的状态设置为有效, 返回void;//恢复正常; in.ignore(100, '\n');//读取并忽略最多100个字符, 包括'\n'; continue; } cout << v << endl; } in.clear(); return in;//返回引用;}//读写一个IO对象会改变其状态, 因此传递和返回的引用不能是const的;int main() { ios::sync_with_stdio(false); cin.tie(NULL);ostringstream msg;//字符串输出流;//向string写入数据; msg << "C++ Primer" << endl; istringstream in(msg.str());//strm.str() : 返回strm所保存的string拷贝; f(in); return 0;}
查看答案
填空题
写出程序的运行结果:#include
#include
void main(){double amount = 33.0/9; int number = 248; cout<
查看答案
填空题
写出下面程序的执行结果:#include
#include
#include
using namespace std;int main(){ int x; double a;cout << "x sin(x) cos(x)" << endl; //输出表头for( x=10; x<20; x+=10 ){ a = x * 3.14 / 180; cout << setw(3) << setiosflags( ios::left ); cout << setiosflags( ios::fixed ); cout << setprecision(5); cout << x; cout << setw(10) << sin(a); cout << setw(10) << cos(a)<
查看答案
填空题
写出下面程序的执行结果:#include
using namespace std;int main() {double values[] = { 1.23, 35.36};for(int i = 0; i < 2; i++) {cout.width(10);cout << values[i] << endl;}return 0;}
查看答案
填空题
写出下面程序的执行结果:#include
#include
#include
using namespace std;int main() {double values[] = { 1.23, 35.36};string names[] = { "Zoot", "Jimmy"};for (int i = 0; i < 2; i++)cout << setw(6) << names[i] << setw(10) << values[i] << endl;return 0;}
查看答案
填空题
写出下面程序的执行结果:#include
#include
#include
using namespace std;int main() {double values[] = { 1.23, 35.36};string names[] = { "Zoot", "Jimmy"};for (int i=0;i<2;i++)cout << setiosflags(ios_base::left)<< setw(6) << names[i]<< resetiosflags(ios_base::left)<< setw(10) << values[i] << endl;return 0;}
查看答案
填空题
写出下面程序的执行结果:#include
#include
#include
using namespace std;int main() {double values[] = { 1.23, 35.36};string names[] = { "Zoot", "Jimmy"};cout<
查看答案
填空题
写出下面程序的执行结果:#include
#include
#include
using namespace std;template
inline string toString(const T &v) {ostringstream os;os << v;return os.str();}int main() {string str1 = toString(5);cout << str1 << endl;string str2 = toString(1.2);cout << str2 << endl;return 0;}
查看答案
填空题
通过键盘输入:Type \t字符串后,请写出下面程序的执行结果:#include
#include
using namespace std;int main() { string line;getline(cin, line, 't'); cout << line << endl;return 0;}
查看答案
填空题
写出下面程序的执行结果:#include
#include
#include
using namespace std;struct SalaryInfo {unsigned id;double salary;};int main() {SalaryInfo employee1 = { 600001, 8000 };ofstream os("payroll", ios_base::out | ios_base::binary);os.write(reinterpret_cast
(&employee1), sizeof(employee1));os.close();ifstream is("payroll", ios_base::in | ios_base::binary);if (is) {SalaryInfo employee2;is.read(reinterpret_cast
(&employee2), sizeof(employee2));cout << employee2.id << " " << employee2.salary << endl;} else {cout << "ERROR: Cannot open file 'payroll'." << endl;}is.close();return 0;}
查看答案
1
2
3
下一页
登录
登录
忘记密码
|
立即注册
注册
获取验证码
注册
已有账号 立即登录
忘记密码
获取验证码
找回密码
立即注册
套餐购买
该问题答案仅对会员开放,欢迎开通会员
¥
19.9
0.64/天
1个月(不限次)
¥
19.9
1000次
(不限时)
¥
29.9
0.32/天
3个月(不限次)
¥
59.9
0.16/天
1年(不限次)
请选择支付方式
微信支付
支付宝支付
立即支付
39.8
遇到问题请联系
在线客服
请不要关闭本页面,支付完成请点击
【支付完成】
按钮
支付完成
取消订单
遇到问题请联系
在线客服