码迷,mamicode.com
首页 >  
搜索关键字:简单计算器    ( 264个结果
[android]超简单应用 买菜计算器[买菜算1.0.6]
我自己去菜市场人家说多少钱一斤 或 10元几斤.总是得想想 到底多少钱一斤,于是就想做个简单计算器不用想这些复杂的东西了简单输入几个数就计算出来想要的东西菜三项 单价 数量 总价.随便输入两个即可算出来第三个数是多少. 自动记录上次输入的数值.可以点前面的函数清空当前行特别针对老年人做了放大处理 点 ...
分类:移动开发   时间:2020-05-02 09:56:33    阅读次数:144
采用进出栈方式设计简单计算器
1 #include<stdio.h> 2 #include<math.h> 3 #include<stdlib.h> 4 5 typedef struct stack1 { 6 char data[20]; 7 int top; 8 } StackChars; 9 10 typedef struc ...
分类:其他好文   时间:2020-04-22 19:42:01    阅读次数:83
栈的应用-简单计算器(中缀表达式转后缀表达式)
1 // 2 // Stack.h 3 // 顺序栈 4 // 5 // Created by geshenglu on 2020/3/21. 6 // Copyright © 2020 geshenglu. All rights reserved. 7 // 8 9 #ifndef Stack_h ...
分类:其他好文   时间:2020-04-06 15:42:55    阅读次数:83
C语言实验报告(三)
C程序设计实验报告 姓名:杨静 实验地点:家 实验时间:2020.03.24 实验项目 1.If语句的应用 2.switch-case语句的应用 3.switch-case嵌套if语句的应用 4.switch-case结构嵌套的运用 5.分析程序 6.简单计算器 一、实验目的与要求 1.掌握C语言逻 ...
分类:编程语言   时间:2020-03-26 21:37:19    阅读次数:145
PTA 7-6 简单计算器 (10分)
``````#include<stdio.h>intmain(){inta,b,c,count=0;charch;scanf("%d",&a);while((ch=getchar())!=‘=‘){scanf("%d",&b);if((ch==‘/‘)&&(b==0)){count=
分类:其他好文   时间:2020-03-19 09:26:08    阅读次数:149
HDU 1237 简单计算器 —— stack、stringstream 的使用
题目描述 http://acm.hdu.edu.cn/showproblem.php?pid=1237 代码示例 #include<iostream> #include<stack> #include<string> #include<sstream> using namespace std; in ...
分类:其他好文   时间:2020-03-14 22:04:27    阅读次数:54
PAT-两个数的简单计算器
本题要求编写一个简单计算器程序,可根据输入的运算符,对2个整数进行加、减、乘、除或求余运算。题目保证输入和输出均不超过整型范围。 输入格式:输入在一行中依次输入操作数1、运算符、操作数2,其间以1个空格分隔。操作数的数据类型为整型,且保证除法和求余的分母非零。 输出格式:当运算符为+、-、*、/、% ...
分类:其他好文   时间:2020-03-13 18:32:50    阅读次数:40
HDU1237 简单计算器 栈
1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 #include<stack> 5 #include<vector> 6 using namespace std; 7 int main() 8 { 9 char str ...
分类:其他好文   时间:2020-02-28 22:28:45    阅读次数:59
微信小程序实现简单计算器
背景:最近在学习小程序开发,刷到了一个教学视频做计算器。作者强调在微信小程序里面无法执行eval方法 。想用Function进行构造,还是不被执行。 我好奇的搜了下发现很多人都碰到这个问题,就想自己实现一下,但是现实非常打脸,想了一天多时间,也没找到突破口,最后就在网上找到了 zl_calculat ...
分类:微信   时间:2020-02-19 16:40:36    阅读次数:190
PHP简单计算器
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, ...
分类:Web程序   时间:2020-02-06 16:18:09    阅读次数:292
264条   上一页 1 2 3 4 ... 27 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!