分类: c
thumbnail
c

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

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

vs2013 程序暂停代码

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

c++ 打开资源管理器

Shell #include "stdafx.h" #include <process.h> #include <Windows.h> #include <tchar.h> #pragma comment……
thumbnail
c

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

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