01.
c++编程问题VC自带了一个类叫COleDataTime可以进行日期时间的加减赋值的运算////////////////////////////////////////////////////////////////////////////// COleDateTime classclass COleDateTime{// Constructorspublic: s...查看完整版>>
c++编程问题
02.
c++编程问题for (int i=1;i<10;i++) { for (int j=1;j<=i;j++) cout<<i*j<<'\t'; cout<<endl;}...查看完整版>>
c++编程问题
03.
C++编程问题直接用STL的list就可以了下面的程序在VC 6.0中通过//t.cpp#include <iostream>#include <list>#include <algorithm>using namespace std;void PrintIt(int& s) {cout<<s<<endl;}int m...查看完整版>>
C++编程问题
04.
C++编程问题#include <iostream.h>class Clube{public: void set_value(int a,int b,int c) { length=a;width=b;height=c; } void clube() { ti=length*width*height; } void display() { cout<<"体积是:"<&...查看完整版>>
C++编程问题
05.
C++编程问题楼上的兄弟错了,car()之前调用的是vehicle()不带参数的,因为你vehicle没有定义默认构造函数,所以出错了,在vehicle里面定义一个默认构造函数就可以了...查看完整版>>
C++编程问题
06.
c++编程问题我有个VF的管理系统,也是我以前的.如果要的话,加我QQ说话:***********下面是部分代码SET EXACT ON CLOSE allUSE manager nam=thisform.text1.Textpwd=thisform.text2.TextLOCATE FOR ALLTRIM(用户名)=ALLTRIM(nam)IF E...查看完整版>>
c++编程问题
07.
c++编程问题你上这个网站吧,上面很多关于编程方面的视频!...查看完整版>>
c++编程问题
08.
c++编程问题#include "iostream.h"class box{ public: void init(double len,double wid,double hei) { length=len; width=wid; heighth=hei; } double Vol() { return length*width...查看完整版>>
c++编程问题
09.
c++编程问题1:char *strcpy(char *dest,const char *source){ char* p = dest,*q=source; if(p == 0)return 0; while(*(p++)=*(q++)); return dest;}2:int strcmp(const char *str1,const char *str2){ while(str1&&str2)...查看完整版>>
c++编程问题
10.
C++编程问题!!#include "iostream"using namespace std;int main () { char c = '\0'; do { cout << "现在下雨吗?"; cin >> c; } while (c!='y' && c!='n'); switch (c) { case 'y': cout << "现在下雨" &l...查看完整版>>
C++编程问题!!
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。