摘要:
/*please write a program to check three number if can construct a tryaigle*/ #include using namespace std; class CheckTriangle { public: CheckTriangle(int x,int y,int z):a(x),b(y),c(z){} void ope... 阅读全文
摘要:
/* c++在运行期间不会自动检查数组是否越界,设计一个类检查数组是否越界。 */ #include #include using namespace std; class check { public: check(char*s) { str=new char[strlen(s)+1]; strcpy(str,s); len=strlen(s); } char ope... 阅读全文
摘要:
CC++ 题集(CC++试题和部分答案)1. 以下三条输出语句分别输出什么?[C易] char str1[] = "abc"; char str2[] = "abc"; const char str3[] = "abc"; const char str4[] = "abc"; const char* str5 = "abc"; const char* str6 = "abc"; cout <... 阅读全文
摘要:
#include #include using namespace std; int main() { ifstream in; int a[10]; int j=0; in.open("data.txt",ios_base::in); //你自己要先新建一个num.txt来放数字 while(!in.eof()) { in>>a[j]; cout<<"a["<<j<... 阅读全文
摘要:
#include #include #include using namespace std; typedef multimap::value_type CIT; typedef multimap::const_iterator IT; template void show(IT&it,multimap&r) { for(it=r.begin();it!=r.end();++it) ... 阅读全文
摘要:
#include #include #include #include using namespace std; typedef set::const_iterator CIT; template void show(CIT&it,set&s) { for(it=s.begin();it!=s.end();++it) coutname1; name1.insert(s1,s1+N... 阅读全文