Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

~240 People Reached
Favorite Forums
Member Avatar for LZS_405

.model small .stack 100h .data Spc db 0dh,0ah, " $" ;New Line ;Bases Conversion ConT db 0dh,0ah, " Conversion $" ;Conversion Title ConBs3 db 0dh,0ah, "Base 3 to Base 5 " db 0dh,0ah,0dh,0ah, "Base 3 [00 to 22] : $" ;Enter Base 03 Number EqBs3 db 0dh,0ah, "Base 5 Equivalent …

Member Avatar for rproffitt
0
75
Member Avatar for LZS_405

.model small .stack 100h .data Spc db 0dh,0ah, " $" ;New Line ;Bases Calculation in Calculator BsA31 db 0dh,0ah, " Base 03 Addition " ;Addition Base 03 db 0dh,0ah, " " db 0dh,0ah, "Addend[00-22]: $" BsA32 db 0dh,0ah, "Augend[00-22]: $" SumA db 0dh,0ah, " Sum is : $" ;Sum ;Calculation …

0
24
Member Avatar for LZS_405
Member Avatar for jwenting
0
90
Member Avatar for LZS_405

package Dialogs; import java.text.DecimalFormat; import java.util.Scanner; public static void main(String[] args) { Scanner sc = new Scanner(System.in); Scanner newdata =new Scanner(System.in); DecimalFormat df = new DecimalFormat(".00"); int newprogram; int count = 0; double Total1; System.out.print("How many items in a counter? : "); int Item = sc.nextInt(); String new1 [] = …

Member Avatar for stultuske
0
51