标签: c/c++
thumbnail
c

C/C++各种类型int、long、double表示范围(最大最小值)

  在vs 2013 中代码如下: // ConsoleApplication2.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include<iostream> #in……
thumbnail
c

vs2013 程序暂停代码

方法一: // ConsoleApplication1.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #define PRICE 30; /*定义一个符号常量*/ ……
thumbnail
c

c++ 打开资源管理器

#include "stdafx.h" #include <process.h> #include <Windows.h> #include <tchar.h> #pragma comment (lib,"Urlmon.lib") #pragma……
thumbnail
c

c语言中实现数字倒计时功能

include<stdio.h> include<windows.h> int main() { int i; for (i=9;i>=0;i--) { printf ("%d",i); sleep(1000); ……