邹城市怡悦编程常年招生置顶
邹城市怡悦编程,C++信奥赛启蒙班,常年招生。招生对象:9周岁以上学生教学内容:C++信奥赛入门课程设置:每周一节课上课时间:每周五、每周六上课地点:东城百货大楼齐鲁soho联系方式:13153739928(微信同号)<!--autointro-->...
1.8 设置域宽setw()
问题:数学老师请你帮忙,在屏幕上输出10+870的竖式计算,如下图所示: 程序如下: #include <iostream> using namespace std; int main() { int a,b,s; a = 18; b = 78...
1.7 交换两个变量的值和注释符号
问题,如何交换两个变量的值#include <iostream> using namespace std; int main() { int a,b,temp; a = 10; b = 20; cout << "交换...
1.3-变量、表达式和赋值语句
问题:天安门广场的面积是多少平方米? #include <iostream> using namespace std; int main() { int a,b,s; a = 880; b = 500; s = a * b; cout <&...
1.2 cout语句
#include <iostream> using namespace std; int main() { cout << "白日依山尽,黄河入海流。" << endl; return 0; } 输出整首 #...