基于51单片机+Proteus仿真的计算器源码及仿真图
2021-09-11 09:38:22 82KB 计算器
1
package ymq.demo03; import android.app.Activity; import android.os.Bundle; import android.view.*; import android.widget.*; public class demo03 extends Activity { /** Called when the activity is first created. */ String str=""; EditText et; int c=0,flag=0; double b=0.0,g=0.0,f=0.0; View vi; public boolean onCreateOptionsMenu(Menu menu) { // TODO Auto-generated method stub menu.add(0, 1, 1, "退出"); return super.onCreateOptionsMenu(menu); } @Override public boolean onOptionsItemSelected(MenuItem item) { // TODO Auto-generated method stub if(item.getItemId()==1){finish();} return super.onOptionsItemSelected(item); } //计算方法 public double calculater(){ switch(c){ case 0:f=g;break; case 1:f=b+g;break; case 2:f=b-g;break; case 3:f=b*g;break; case 4:f=b/g;break; } b=f; c=0; return f; } @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); //获得按键 final Button number[]=new Button[10]; final Button fuhao[]=new Button[11]; fuhao[0]=(Button)findViewById(R.id.button01); fuhao[1]=(Button)findViewById(R.id.button02); fuhao[2]=(Button)findViewById(R.id.button03); fuhao[3]=(Button)findViewById(R.id.button04); fuhao[4]=(Button)findViewById(R.id.button05); fuhao[5]=(Button)findViewById(R.id.button06); fuhao[6]=(Button)findViewById(R.id.buttonce); fuhao[7]=(Button)findViewById(R.id.buttonc); fuhao[8]=(Button)findViewById(R.id.zheng); fuhao[9]=(Button)findViewById(R.id.kaifang); fuhao[10]=(Button)findViewById(R.id.pingfang); number[0]=(Button)findViewById(R.id.button0); number[1]=(Button)findViewById(R.id.button1); number[2]=(Button)findViewById(R.id.button2); number[3]=(Button)findViewById(R.id.button3); number[4]=(Button)findViewById(R.id.button4); number[5]=(Button)findViewById(R.id.button5); number[6]=(Button)findViewById(R.id.button6); number[7]=(Butto
2021-08-31 17:23:03 4.75MB Android
1
合工大数据结构课程设计计算器源码
2021-08-21 13:04:15 913KB c++
1
:abacus:计算器 该项目是通过引导的。 可用脚本 在项目目录中,可以运行: yarn start 在开发模式下运行该应用程序。打开在浏览器中查看它。 如果您进行编辑,则页面将重新加载。您还将在控制台中看到任何棉绒错误。 yarn test 在交互式监视模式下启动测试运行程序。有关更多信息,请参见关于的部分。 yarn build 构建生产到应用程序build文件夹。它在生产模式下正确捆绑了React,并优化了构建以获得最佳性能。 生成被最小化,并且文件名包括哈希值。您的应用已准备好进行部署!
2021-08-18 18:43:34 386KB testing calculator typescript jest
1
汇编语言写的计算器源码,你学习汇编的起点。
2021-08-16 22:05:19 15KB 汇编,计算器,源码
1
Delphi7开发的计算器,支持表达式计算和标准计算(Windows XP计算器的计算方式)两种模式,测试通过考核,没有bug
2021-08-09 17:18:11 241KB 计算器 表达式计算
1
利用android studio 进行app设计,采用kotlin编程,实现小费计算系统。 若遇到问题,看帖https://blog.csdn.net/jaz/article/details/119443300
2021-08-06 13:02:52 16.02MB androidstudio kotlin 计算器 #源码类#
前端导师 - 计算器应用 欢迎! :waving_hand: 感谢您查看此前端编码挑战。 挑战通过构建现实项目帮助您提高编码技能。 要完成这项挑战,您需要对 HTML、CSS 和 JavaScript 有很好的了解。 挑战 您面临的挑战是构建此计算器应用程序并使其看起来尽可能接近设计。 您可以使用任何您喜欢的工具来帮助您完成挑战。 因此,如果您有想要练习的东西,请随时尝试。 您的用户应该能够: 查看元素的大小根据其设备的屏幕大小调整 执行数学运算,如加法、减法、乘法和除法 根据自己的喜好调整颜色主题 奖励:使用prefers-color-scheme检查他们的初始主题首选项,并将任何其他更改保存在浏览器中 想要在挑战中获得一些支持? 并在#help频道中提问。 在哪里可以找到一切 您的任务是将项目构建到/design文件夹中的/design 。 您将找到该设计的移动版和桌面版。 设计为 JPG 静
2021-08-05 12:03:19 47.11MB JavaScript
1
python3实现带界面的计算器源码,代码可直接运行
2021-08-04 22:04:08 3KB python3 源码