673 Unanswered Topics
Remove Filter ![]() | |
I had used "Do It Again" macro creator software for quite a while with no problem. Recently a MS support tech did a system recovery o my computer (system specs attached), in an attempt to solve a problem. Since the recovery "Do It Again" (One of the program deleted in … | |
I’m trying to create a change machine bored and have no programming experience. If anybody has any suggestions I am open to paying someone to help me with this project. I have some logic controlled hoppers and pulse validator‘s 50 MS on 50 MS off. I just need it to … | |
I need help with my coding and I need to know how to configure my text for my button, Here is my code so far: class EyeSprite(Sprite): def __init__(self, game): Sprite.__init__(self, game) self.images = [ PhotoImage(file="C:\\Users\\John Magana\\Desktop\\Python Projects\\clicker game folder\\eye1.png") ] self.current_image = 0 self.current_image_add = 1 self.last_time = time.time() … | |
Java is necessary in every field. | |
Can you help me decrypt the message with the given information. I figured out the first line is using Xor ciphers but how do I figure out the rest? Y[ZU[XZWZ\XXZjZ[[WWVWU Ogaqkxpgbqbfiof! Cyw'ss bun! Zqksxl cywd lnepwvs uozneh. Qjc mgabiy nfx vmz-djrhkfalfq. Xnjfx ai qjvi viqi uat pgw odjwp. The radio … | |
INCLUDE "EMU8086.INC" ORG 100H LEA SI, MSG1 CALL PRINT_STRING CALL SCAN_NUM MOV AX, CX LEA SI, MSG2 CALL PRINT_STRING CALL SCAN_NUM MOV BX,CX CMP AX, BX ; COMPARE AL - BL. JE EQUAL ; JUMP IF AL = BL (ZF = 1). PRINT 'NO' ; IF IT GETS HERE, THEN … | |
; Data section .data extern printMSG extern exitNormal extern printRAX extern printRBX extern printRCX extern printRDX extern getByteArray extern printByteArray extern printEndl startPrompt db "Welcome to the amazing dice game, press enter to start " startPromptLen dq 54 rerollPrompt db "Enter any numbers you want to keep " rerollPromptLen dq … | |
![]() | section .text global _start: _start: mov esi, array ; get pointer to array mov edi, arraylen ; edi = number of array elements loop: mov edx, 2 ; print 2 bytes mov ecx, [esi] ; get current array element add ecx,48 push ecx ; push to stack since we need … |
Hello,i learned how to used the C++ but i have problems to analysis the problem in my project. Write a program to process monthly paycheck for all contract workers of an organization. Each worker will have the following information: Identification number (at-digit integer), the worker's name, hourly pay rate, and … | |
Enter your answer: Cucumber You got the wrong answer... but it should be correct answer Data Segment input db "Enter Your Answer: $" g db 20 dup('$') ; strlen1 db $-g str2 db 'cucumber','$' strlen2 db $-str2 streq db 10,13,'You got the correct answer','$' struneq db 10,13,'You got the Wrong … | |
Hi guys, I have a problem. I'm using CPUSim Wombat 1 to write a program. The goal is to display the numbers that the user has entered in the order they've been entered. What I'm stuck on is the storages. It's currently in a loop. The sentinel value is 0. … | |
Mam/Sir Somebody can help me!!!! I did the format that displayed of the horizontal position after input the single character and so that is a requirement of the output So this is a expected output The output should be like this: EVEN EVEN Input: X xyz The requirement should be … | |
Hello i am creating the assembly program that accepts a single character and display the alphabet . The requirements are (1) The input character should be displayed (2) The input of the single uppercase letter should be displayed the lowercase letter. (3) The alphabet should be displayed horizontal position and … | |
I am trying to complete an assignment using stacks and I need a little guidance. My task is to make an array of 6 values and pass it to VIA stack to a subroutine where I need to increment through it and pass each value of the array to another … | |
I have a Health based .Net (C#) project that needs to import a huge chunk of medical records from an old database that were used in a different application. The database has been successfully migrated to the version compatible with our application. The problem is the contents in one of … | |
Hi Iam a student , nd i have a home work Can any one help me !! Plz Write an asm 8086 language program that take 2 strings as input and computes the string distance between the 2 ,,, the string distance between 2 string os the sum of the … | |
.MODEL SMALL .STACK 50H .DATA NL DB 0DH, 0AH, '$' .CODE MAIN PROC MOV AX, @DATA MOV DS, AX MOV CX, 5 MOV BX, 1 FOR_1: PUSH CX MOV DL, 20H MOV AH, 2 FOR_2: INT 21H LOOP FOR_2 MOV CX, BX FOR_3: MOV DL, '*' MOV AH, 2 INT … | |
middle c on a piano hase frequence of 261.63Hz bit 5 of input address 2000H is connected to an amlifer which driven a loud speaker . Write a program that sends middle c to the speaker | |
Error 4 'ASP.ajax_aspx' does not contain a definition for 'TextBox8_TextChanged' and no extension method 'TextBox8_TextChanged' accepting a first argument of type 'ASP.ajax_aspx' could be found (are you missing a using directive or an assembly reference?) C:\Users\Hp\Documents\Visual Studio 2010\WebSites\WebSite4\ajax.aspx 508 | |
hello, i am writing a mips assembly program where i must multiply two 64 bit unsigned integers. I understand that i must first take one integer divide it into hi lo and do the same with the second and multiply these four parts. My question is when i read an … | |
When posting any request for help with an assembly language problem, we ask that you provide some crucial information: * The operating system (Windows, Linux, MacOS, etc.) the program will be running under, including the version, * The assembler you are using, including the version, * the bit width being … | |
i want to write easy68k Assembly program to read two numbers each number have 20 digit , then multiply them together and finally print out the result ?? | |
how to create logic operation like and, or, xor on two numbers in to pep8 assembly language? | |
Write a MIPS Assembly program that inputs names and marks for three student assignments and computes the total score for each student and the average class score per assignment. Assume Assignment#1 is scored out of 5; Assignment#2 is scored out of 10; Assignment#3 is scored out of 5; Hence the … | |
i need generate a program that say if a word is palindrome or not, but the specification of my word say that the max length of the string is 200, but the getstr of io.mac the max is 81, anyone know a alternative to manage a string of 200 characters … | |
Like the title says. I have a user-inputted string that I need to do math calculations with, therefore, I need to convert the string to an integer. This is my current code. What can I do to manipulate the number the user inputs? org 0x100 section .data prompt db "Enter … | |
Hello, I'm writing a little program and I have a problem : Using the CHARI instruction , I 'm supposed to get 4 digits representing a year ( I can not use DECI ) . I am able to read characters one by one and convert them to decimal , … | |
hi i am required to write a program in mips assembler where i am to create a checkerboard which is too be saved and written to a bmp file, compile this program it has a problem with writing the file because it jumps straight to my error message could someone … | |
hello everyone! my program is nearing completion and is due tommrow. However i have identified the source of an issue. i am cycling through a few functions which roll a dice 1-6 and add that result to a buffer to keep score.Then when i want to print, i am only … | |
hello, guys i need a help i am trying tp print triangle but i am unable to print it rightly ..i am bad in english so plz help me i want to show triangle like this * ** *** **** ***** ..................... this is my code so far ....it display … |
The End.