1显示程序执行的窗口一闪即逝。可以添加如下语句:getchar()作用是获取键盘输入。2 inf 和 nanfloat toobig = 3.4e38 * 100.0f; float not_a_number = asin(1.2);//math.h printf("%e \t %e\n",...
分类:
其他好文 时间:
2014-06-28 21:57:22
阅读次数:
305
自己把一些学习中和使用中的一些点滴有用的记录下来和大家分享。1.获取指定长度的字符串,或者说为字符串数组获取用户输入的字符void get_str(char
str[], int len){ int i=0, c; while (i=250){ while(getchar()!=’\n’) ; .....
分类:
编程语言 时间:
2014-06-09 21:49:51
阅读次数:
325
import java.util.*;public class
GetFirstNoRepeatChar{ static char getChar(String s){ int len=s.length(); in...
分类:
其他好文 时间:
2014-06-09 21:36:34
阅读次数:
226
开发环境 : win7 32bit ,VS2010,先看一段C代码:#include int
main(){ int x; //-858993460 printf("%d",x); //弹出Debug Error对话框 //x=func1();
getchar(); r...
分类:
其他好文 时间:
2014-06-08 06:26:59
阅读次数:
321
C语言的程序代码如下:#include"stdio.h"main(){inti;for(i=1;i<256;i++){printf("%c",i);}getchar();}显示结果:编码在127以上的都显示为“?”。这是因为
编号在128~255的是扩展的编码,原本就不是作为显示用的,当然在不同的终...
分类:
编程语言 时间:
2014-06-02 14:05:21
阅读次数:
312
一、用VC++控制台应用程序输出第一个HelloWorld!1.创建一个C++控制台应用程序ConsoleTest2.在源文件ConsoleTest.cpp中输入以下代码:#include"stdafx.h"//预编译头#include<iostream>usingnamespacestd;intmain(){cout<<"HelloWorld!\n";getchar();return0;}cout函..
分类:
编程语言 时间:
2014-05-27 03:27:38
阅读次数:
299
/*C控制语句--分支和跳转*//*关键字 if else switch continue break
case default goto 运算符:&&(且) ||(或) ?:(三元运算符) 函数 getchar() putchar()
怎样使用if和if else 语句以及如何嵌套使用它们。...
分类:
其他好文 时间:
2014-05-27 01:17:44
阅读次数:
282
#include "stdafx.h"#include using namespace
std;int main(){ char c,d,e,f; printf("please input two characters:\n");
c=getchar(); putchar...
分类:
其他好文 时间:
2014-05-21 23:46:19
阅读次数:
352
在C++中,各种输入方法还是不少的,而且各有所异,本文做一点简要总结,主要涉及如下内容:cin、cin.get()、cin.getline()、getline()、gets()、getchar()。
输入原理简述: 程序的输入都建有一个缓冲区,即输入缓冲区。每次输入过程是这样的,当一次键盘输入结束时...
分类:
编程语言 时间:
2014-05-12 04:10:30
阅读次数:
566
思路:简单的匹配操作,利用栈。
Code:
#include
#include
char stack[135];
int main()
{
int n;
scanf("%d",&n);
getchar();
while(n-->0)
{
memset(stack,0,sizeof(stack));
char c;
int top=0;
int flag=1;...
分类:
其他好文 时间:
2014-05-11 20:19:34
阅读次数:
376