【拼音】: shì tóng ér xì
【解释】: 把事情当成小孩儿玩耍一样来对待。比喻不当一回事,极不重视。
【出处】: 《史记·绛侯周勃世家》:“曩者霸上、棘门军,若儿戏耳,其将固可袭而虏也。”
【举例造句】: 为官做吏的人,千万不可草菅人命,视同儿戏。 ★明·凌濛初《初刻拍案惊奇》卷十一�
【拼音代码】: stex
【近义词】: 率尔 *** 觚、视为儿戏、视若儿戏
【反义词】: 三思而行、小心翼翼
【歇后语】:
【灯谜】: 老莱彩衣娱高堂
【用法】: 作谓语、宾语;指极不重视
归档文件时会经常创建文件夹,并以当前日期命名,如2012-06-12,这么一个简单的 *** 作在Windows资源管理器里也要 *** 作好几步,
最先是想到的办法是像'cmdhere'的作法那样,写一个reg文件,导入到注册表中,作用是在右键菜单中添加一项,然后调用命令行,
结果是Win7下不行,在文件夹内空白处点右键,菜单里出不来添加的新项,
忽看到之前安装过的StEx的插件,可以自己添加命令,所以再写个newfoldwithdate.bat文件放到C:\Windows\System32下,
内容只有一行:
md % date:~0,4%-% date:~5,2%-% date:~8,2%
(将每个date前面的空格去掉)
然后添加到StEx里,再设置一个快捷键'Ctrl+N',就齐活了.
PS:StEx这个插件,看上面的截图,有几个非常好用的功能,我经常用到:
'Console':打开命令行,并定位到当前目录
'Copy Paths':拷贝当前目录到系统剪贴板,若有文件被选中时,会拷贝该文件的完整路径,这个功能在选择或保存文件时.
第一题:#include<iostream>
#include<cmath>
using namespace std
class point{
private:
float a
float b
public:
point(int x=0,int y=0){
a=x
b=y
}
float geta(){return a}
float getb(){return b}
~point()
{
}
void display()
{
cout<<a<<","<<b<<endl
}}
class line
{
private:
point f1,f2
float len
public:
line(point pf1,point pf2)
~line()
{
}
float getlength(){return len}//显示线段长度
}
line::line(point pf1,point pf2):f1(pf1),f2(pf2)
{
float m=(f1.geta()-f2.geta())
float n=(f1.getb()-f2.getb())
len=sqrt(m*m+n*n)
}
int main()
{ float a,b,c,d
cout<<"请输入两个坐标"<<endl
cin>>a>>b>>c>>d
point p1(a,b),p2(c,d)
cout<<"两点坐标分别为:"<<endl
p1.display ()
p2.display ()
line line(p1,p2)
cout<<"两点的距离为:"<<endl
cout<<line.getlength ()<<endl
return 0
}
第二题:
#include<iostream>
#include<cmath>
using namespace std
class point{
public:
point(int xx=0,int yy=0)
{
x=xx
y=yy
count++
}
void display()
{
cout<<x<<","<<y<<endl
}
point(point &p)
{
x=p.x
y=p.y
count++
}
~point()
{
count--
}
static void showcount()
{
cout<<" point count="<<count<<endl
}
int getx(){return x}
int gety(){return y}
private:
int x,y
static int count
}
int point::count=0
int main()
{
point myp1(1,1),myp2(4,5)
myp1.display()
myp2.display()
point::showcount()
return 0
}
希望对你有用
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)