按类别查询搜索结果
关于关键词 的检测结果,共 5850
【C/C++】 算成绩
mxh1634845356 | 2014-12-16 16:44:28 | 阅读(2090) | 评论(0)
点击(此处)折叠或打开#include<stdio.h>int main(){    float score;    scanf("%f",&score);    if(90<=score&&score>=100)   ...【阅读全文】
【C/C++】 算器
天空中的一朵云 | 2014-12-16 16:28:47 | 阅读(1720) | 评论(0)
点击(此处)折叠或打开#include double calc(double a,double b,char p){    if(p == '+')    {        return a+b;...【阅读全文】
hm2462964492 | 2014-12-16 15:42:28 | 阅读(1480) | 评论(0)
解决ubuntu中vi不能正常使用方向键与退格键的问题 方案一:问题:   ubuntu中vi在编辑状态下方向键不能用,还有回格键不能删除等我们平时习惯的一些键都不能使用。解决办法:   可以安装vim full版本,在full版本下键盘正常,安装好后同样使用vi命令。安装vim:...【阅读全文】
shenya0203 | 2014-12-15 22:50:39 | 阅读(0) | 评论(0)
点击(此处)折叠或打开struct optr_opt_s *search_func_optr_list(char *buf){    int rc = -1;    int i;    int len = strlen(buf);   &nb...【阅读全文】
zxp390104585 | 2014-12-15 21:41:33 | 阅读(920) | 评论(0)
C++提供了关键字explicit,可以阻止不应该允许的经过转换构造函数进行的隐式转换的发生。声明为explicit的构造函数不能在隐式转换中使用。C++中,一个参数的构造函数,承担了两个角色:一是个构造器,二是个默认且隐含的类型转换操作符。   所以,有时候在我们写下如AAA = XXX, 这样的代码,且恰好XXX的类型正好是A...【阅读全文】
shenya0203 | 2014-12-15 18:01:59 | 阅读(0) | 评论(0)
点击(此处)折叠或打开#include "stdafx.h"#include <stdio.h> #include <stdlib.h>#include "stack.h"#ifdef _WIN32#include <windows.h> #else /*linux*/#include <system.h>...【阅读全文】
【C/C++】 算器
cmq1010950233 | 2014-12-15 16:34:17 | 阅读(1940) | 评论(0)
点击(此处)折叠或打开#include<stdio.h>double jisuanqi(double a , double b ,char c){    if(c=='+')    {    return a+b;  &n...【阅读全文】
wanwdar | 2014-12-15 11:50:29 | 阅读(1560) | 评论(0)
点击(此处)折叠或打开#include <stdio.h>double calculator (double a, double b, char operation){    if (operation == '+')    {     ...【阅读全文】
9768p1 | 2014-12-15 11:48:59 | 阅读(1570) | 评论(0)
点击(此处)折叠或打开#include <stdio.h>double calculator(double a, double b, char operation){    if(operation=='+')    {     &nbs...【阅读全文】
【C/C++】 算器
拾忆1765207585 | 2014-12-15 11:48:13 | 阅读(980) | 评论(0)
#include<stdio.h>double calculator(double a, double b,  char operator){if (operator=='+'){return a+b;}else if (operator=='-'){return a-b;}else if (operator=='*'){return a*b;}else if (operator=='/'){if(b==0){printf(" 输入的有误,除数不能为零\n");}else{return a/b;}}else&...【阅读全文】
【C/C++】 C语言算器
meng1623338942 | 2014-12-15 11:32:45 | 阅读(1480) | 评论(0)
#include<stdio.h> double calcutotor(double a,double b,char myoperator) { if(myoperator=='+')  {   return a+b;  } else if(myoperator=='-')  {   return a-b;  } else if(myoperator=='*') ...【阅读全文】
【C/C++】 算器 c
mqt327292635 | 2014-12-15 11:12:21 | 阅读(2580) | 评论(0)
/*计数器*/#include<stdio.h>double calcutotor(double a,double b,char myoperator){ if(myoperator=='+')              //加 {  return a+b; } else if(myoperator=='-')     ...【阅读全文】
【C/C++】 算器
mxh1634845356 | 2014-12-15 11:09:24 | 阅读(1940) | 评论(0)
点击(此处)折叠或打开#include<stdio.h>double calcutortor(double a, double b, char myoperator){    if(myoperator=='+')    {       &nb...【阅读全文】
【C/C++】 算器。。
鱼的记忆w | 2014-12-15 11:07:25 | 阅读(2030) | 评论(0)
点击(此处)折叠或打开#include <stdio.h>double calcutotor(double a,double b,char operator){    if(operator=='+')    {        ret...【阅读全文】
【C/C++】 c语言算器
孙超越 | 2014-12-15 10:44:18 | 阅读(1770) | 评论(0)
点击(此处)折叠或打开#include<stdio.h>double calcutotor(double a,double b,char myoperator){    if(myoperator=='+')    {     &nbs...【阅读全文】
shenya0203 | 2014-12-14 22:49:36 | 阅读(0) | 评论(0)
点击(此处)折叠或打开// calc.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include #include #include "stack.h"#if...【阅读全文】
shenya0203 | 2014-12-11 17:31:33 | 阅读(0) | 评论(0)
点击(此处)折叠或打开// calc.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include #include #ifdef _WIN32#include...【阅读全文】
shenya0203 | 2014-12-10 22:48:32 | 阅读(0) | 评论(0)
在家中的 对于参数的解析方法。unsigned char g_optr[] = "+-*/";struct optr_stack{    int sp;    char stack[128];};struct optr_stack g_optr_st = {.sp = 0, .stack = {0}};...【阅读全文】
【C/C++】 字符个数
小闹腾 | 2014-12-10 21:46:49 | 阅读(560) | 评论(0)
输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。点击(此处)折叠或打开#include int main(){    int a, b, c, d;    char m;...【阅读全文】
jack_sk_sk | 2014-12-10 15:11:25 | 阅读(1360) | 评论(0)
多个子线程同时读写,加快分割速度。【阅读全文】