摘要:
#include <vector> #include <iostream> int main() { std::vector<int> my_vector = {1, 2, 3}; my_vector[1] = 10; std::cout << my_vector[1] << std::endl; 阅读全文
摘要:
#include <vector> #include <iostream> int main() { std::vector<int> my_vector; return 0; } #include <vector> #include <iostream> int main() { std::vec 阅读全文
摘要:
#include <iostream> using namespace std; class Rectangle {public: Rectangle(int top, int left, int bottom, int right); ~Rectangle(){} int getTop() con 阅读全文
摘要:
#include<iostream> using namespace std; class CPolygon{ protected: int width,height; public: void set_values(int a,int b) {width=a;height=b;} }; class 阅读全文
摘要:
#include <iostream> #include <string> using namespace std; bool check(string s) { int p_pos = -1, t_pos = -1; int p_count = 0, t_count = 0; for (int i 阅读全文
摘要:
#include <iostream> #include <string> using namespace std; int main() { string pingyin[10] = {"ling","yi","er","san","si","wu","liu","qi","ba","jiu"}; 阅读全文
摘要:
//student.h #pragma once #include<string> #include<iostream> using namespace std; class student { public: student(void); ~student(void); void setValue 阅读全文
摘要:
//student.h #pragma once #include<string> #include<iostream> using namespace std; class student { public: student(void); ~student(void); void setValue 阅读全文
摘要:
2-26 一、问题描述: 编写一个完整的程序,运行时向用户提问“你考试考了多少分?(0~100)”,接收输入后判断其等级显示出来。规则如下:优90≤分数≤100 良80≤分数<90 中60≤分数<80 差0≤分数<60 二、设计思路: 1.先输出提示语句,输入分数 2.利用while循环,若输入分数 阅读全文
摘要:
2-26 一、问题描述: 编写一个完整的程序,实现功能:向用户提问“现在正在下雨吗?”,提示用户输入Y或N。若输入为Y,显示“现在正在下雨。”;若输入为N,显示“现在没有下雨。”;否则继续提问“现在正在下雨吗?”。 二、设计思路: 1.输出语句提问用户输入Y或N; 2.采用if语句,区别Y与N的输出 阅读全文