虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

Int

  • 数据加密程序 p macro buf lea dx,buf mov ah,9 Int 21h endm data segment pp db 0dh,0ah, welcome you t

    数据加密程序 p macro buf lea dx,buf mov ah,9 Int 21h endm data segment pp db 0dh,0ah, welcome you to run this programme!$ qq db 0dh,0ah, when you input number,press enter.$ qw db 0dh,0ah, 6eh,52h,94h,52h,$ qa db 0dh,0ah, $ info1 db 0dh,0ah,0dh, input number:$ info2 db 0dh,0ah, output number:$ bufa db 20

    标签: buf segment welcome macro

    上传时间: 2013-12-24

    上传用户:离殇

  • 多通道AD转换演示程序 MCU:MEGA8 晶振:内部RC(Int) 8MHZ

    多通道AD转换演示程序 MCU:MEGA8 晶振:内部RC(Int) 8MHZ

    标签: MEGA8 8MHZ MCU Int

    上传时间: 2014-11-26

    上传用户:luke5347

  • Methods void close() Int read() reads and returns a chracter. Int read(char[] characterArray

    Methods void close() Int read() reads and returns a chracter. Int read(char[] characterArray) populates an array of characters with data. boolean ready() - returns “true” if there is data available. ……

    标签: read characterArray Int chracter

    上传时间: 2013-12-18

    上传用户:小儒尼尼奥

  • 溫度華氏轉變攝氏 #include <stdio.h> #include <stdlib.h> enum x {A,B,C,D,E} Int main(void)

    溫度華氏轉變攝氏 #include <stdio.h> #include <stdlib.h> enum x {A,B,C,D,E} Int main(void) { Int a=73,b=85,c=66 { if (a>=90) prIntf("a=A等級!!\n") else if (a>=80) prIntf("73分=B等級!!\n") else if (a>=70) prIntf("73分=C等級!!\n") else if (a>=60) prIntf("73分=D等級!!\n") else if (a<60) prIntf("73分=E等級!!\n") } { if (b>=90) prIntf("b=A等級!!\n") else if (b>=80) prIntf("85分=B等級!!\n") else if (b>=70) prIntf("85分=C等級!!\n") else if (b>=60) prIntf("85分=D等級!!\n") else if (b<60) prIntf("85分=E等級!!\n") } { if (c>=90) prIntf("c=A等級!!\n") else if (c>=80) prIntf("66分=B等級!!\n") else if (c>=70) prIntf("66分=C等級!!\n") else if (c>=60) prIntf("66分=D等級!!\n") else if (c<60) prIntf("66分=E等級!!\n") } system("pause") return 0 }

    标签: include stdlib stdio gt

    上传时间: 2014-11-10

    上传用户:wpwpwlxwlx

  • 溫度華氏轉變攝氏 #include <stdio.h> #include <stdlib.h> enum x {A,B,C,D,E} Int main(void)

    溫度華氏轉變攝氏 #include <stdio.h> #include <stdlib.h> enum x {A,B,C,D,E} Int main(void) { Int a=73,b=85,c=66 { if (a>=90) prIntf("a=A等級!!\n") else if (a>=80) prIntf("73分=B等級!!\n") else if (a>=70) prIntf("73分=C等級!!\n") else if (a>=60) prIntf("73分=D等級!!\n") else if (a<60) prIntf("73分=E等級!!\n") } { if (b>=90) prIntf("b=A等級!!\n") else if (b>=80) prIntf("85分=B等級!!\n") else if (b>=70) prIntf("85分=C等級!!\n") else if (b>=60) prIntf("85分=D等級!!\n") else if (b<60) prIntf("85分=E等級!!\n") } { if (c>=90) prIntf("c=A等級!!\n") else if (c>=80) prIntf("66分=B等級!!\n") else if (c>=70) prIntf("66分=C等級!!\n") else if (c>=60) prIntf("66分=D等級!!\n") else if (c<60) prIntf("66分=E等級!!\n") } system("pause") return 0 }

    标签: include stdlib stdio gt

    上传时间: 2013-12-12

    上传用户:亚亚娟娟123

  • 成績顯示三個部份abc #include<stdio.h> #include<stdlib.h> Int main(void) { float gread

    成績顯示三個部份abc #include<stdio.h> #include<stdlib.h> Int main(void) { float gread prIntf("請輸入分數\n") scanf("%f",&gread) if(gread>=80&&gread<=100) prIntf("成績為A\n") else if(gread>=60&&gread<=79) { prIntf("成績為B\n") } else if(gread>=0&&gread<60) { prIntf("成績為C\n") } else { prIntf("分數輸入錯誤\n") } system("pause") return 0 }

    标签: include stdlib float gread

    上传时间: 2014-01-15

    上传用户:waizhang

  • 河內塔問題 #include<stdio.h> #include<stdlib.h> Int fun_a(Int) void fun_b(Int,Int,Int,in

    河內塔問題 #include<stdio.h> #include<stdlib.h> Int fun_a(Int) void fun_b(Int,Int,Int,Int) Int main(void) { Int n Int option prIntf("題目二:河內塔問題\n") prIntf("請輸入要搬移的圓盤數目\n") scanf("%d",&n) prIntf("最少搬移的次數為%d次\n",fun_a(n)) prIntf("是否顯示移動過程? 是請輸入1,否則輸入0\n") scanf("%d",&option) if(option==1) { fun_b(n,1,2,3) } system("pause") return 0 } Int fun_a(Int n) { Int sum1=2,sum2=0,i for(i=n i>1 i--) { sum1=sum1*2 } sum2=sum1-1 return sum2 } void fun_b(Int n,Int left,Int mid,Int right) { if(n==1) prIntf("把第%d個盤子從第%d座塔移動到第%d座塔\n",n,left,right) else { fun_b(n-1,left,right,mid) prIntf("把第%d個盤子從第%d座塔移動到第%d座塔\n",n,left,right) fun_b(n-1,mid,left,right) } }

    标签: Int include stdlib fun_a

    上传时间: 2016-12-08

    上传用户:努力努力再努力

  • 指定一個數字轉換回十進位,八進位,十六進位#include <stdio.h> #include <stdlib.h> Int main(void) { Int

    指定一個數字轉換回十進位,八進位,十六進位#include <stdio.h> #include <stdlib.h> Int main(void) { Int number =89 prIntf("數字 %d\n",number) /* %d 為十進位輸出格式*/ prIntf("八進位為 %o\n",number) /* %o 為八進位輸出格式*/ prIntf("十六進位為%x\n",number) /* %x 為十六進位輸出格式*/ system("pause") return 0 }

    标签: include Int stdlib stdio

    上传时间: 2013-11-29

    上传用户:tyler

  • 对double型的向Int型转换的出错问题的校正

    对double型的向Int型转换的出错问题的校正

    标签: double Int 转换 校正

    上传时间: 2014-01-10

    上传用户:秦莞尔w

  • 编写具有如下原型的函数:Int f(unsigned long x, Int n, Int& Lxn) 它负责将整数x的第n位(从左边数第n位

    编写具有如下原型的函数:Int f(unsigned long x, Int n, Int& Lxn) 它负责将整数x的第n位(从左边数第n位,n>0)的数值放到引用Lxn之中(将作为结果返回到主调函数的对应实参变量中),并将倒数第n位(从右边数第n位,n>0)的数值作为函数结果返回去。并编制主函数对它进行调用以验证其正确性。 例如,当x=123456789,n=7时,执行语句“Rxn=f(x, n, Lxn) ”将使返回的Lxn为7,并使Rxn变为3;而执行语句“Rxn=f(12345, 6, Lxn) ”将使Lxn与Rxn都变为为0(超出数的“长度”即总位数时返回0)。

    标签: Int unsigned long Lxn

    上传时间: 2017-01-02

    上传用户:s363994250