- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
8 Posted Topics
Re: The solution is easy.Just show us what you did so far.If you didn't write anything,try to decide what kind of information you will use on your software.I mean determine the variables such as double bill_amount; double food_stock; | |
Re: Problem solving and program design in C - Jeri R. Hanly,Eliot B. Koffman | |
Re: i'll give you a solution for the second one. int i,j,n=5; for(i=0;i<n;i++) { for(j=0;j<n;j++) { printf("%d ",j+1); } n--; printf("\n"); for(j=0;j<i+1;j++) printf(" "); } first for loop return 5 times because we define n(number that you wanna print) as 5.That means we gonna print 5 lines of numbers. second for … | |
Hi everyone I wish a happy new year for all. This is the code that i wrote so far. TITLE MASM Template (main.asm) ; Description: ; ; Revision date: INCLUDE Irvine32.inc INCLUDE macros.inc Employee STRUCT idnum BYTE "0000",0 lastname BYTE 30 DUP(0) years WORD 0 Employee ENDS .data workers Employee … | |
I have to write a code.The program compute random sentences by using singly linked list date structure.The same word cannot be used more than once. I've already written the some codes which takes the list. [CODE]// random_sentence_operator.cpp : Defines the entry point for the console application. // #include <stdio.h> #include … | |
I've to write a program which gets a colour from user.Users will enter the colour's name if the colours is exist in my string,program will give a msg.If it doesn't exist give an error msg and stop program.I've already write a code but it doesnt works accurately. [CODE]int i,j; void … | |
I have to do my homework for passing the course :) The question is that; Firstly the starting point is (x1,y1) we get these values from user and we get a lot of two dimensional points from user.If a point is far away from the center point of the points, … | |
i have to find proper divisors of a positive integer.for instance,the proper divisor of 15 are 1,3,5. input 15 output 1 3 5 like that. Thank you for your helps. |