Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
addition
- Page 1
Re: Webdesign and new user experience
Digital Media
Digital Marketing
4 Weeks Ago
by graceweb
I see your point, but I think Sofina is looking for something that can genuinely enhance her client's experience. AI can be a powerful tool if used thoughtfully. Maybe there are ways to integrate it that align with her vision without overwhelming the design.
Webdesign and new user experience
Digital Media
Digital Marketing
1 Month Ago
by Sofina
… ecom and I wanted to give her present as an
addition
to my services, so I contacted some of my partners… talking about AI and I want some kind of an
addition
like that Could you give me some suggestions ?
Re: How Can I Increase More Traffic of My Website?
Digital Media
Digital Marketing
1 Month Ago
by melodyce
In
addition
to the common external links/email marketing/social media marketing/…
Re: Webdesign and new user experience
Digital Media
Digital Marketing
1 Month Ago
by rproffitt
And here I'm hearing: # > Stop putting AI into everything. Also, you don't want something so why buy what you don't want?
Re: ‘Advanced AI should be treated similar to Weapons of Mass Destruction’
Community Center
2 Months Ago
by rproffitt
UPDATE: Feb 4, 2025 — Google on Tuesday updated its ethical guidelines around artificial intelligence, removing commitments not to apply the technology to weapons or surveillance.
Addition problem
Programming
Software Development
12 Years Ago
by paku_dnj
… input of two variable as integer and than do
addition
with the two variables. The ans will stored in… another variable. The program will repeat after every
addition
end and will ask for user input of varibles …math ob_main=new math(); ob_main.add(); } } The code just do
addition
one after another but i want that it will do…
addition class (OOP Help Needed)
Programming
Software Development
14 Years Ago
by solitaryy
…double y) { xaxis = x; yaxis = y; } public double
addition
() { //this is what I am stuck on } }[/CODE] And… SqrXY (6.0, 3.0); SqrXY instance3 = instance1.
addition
(instance2); //instance3 is initialized as (10.0, 5.0… [/CODE] So I need to create an
addition
function which will add the values of the already…
addition in linked lists
Programming
Software Development
14 Years Ago
by sairakhalid
How can i make
addition
in my linked lists if the nodes are stroing two …) int element 2) int colomnvalue i have to make the
addition
on the basis that the nodes having the same colomvalue…, thier element should be added. This
addition
is to be made in linked lists either by creating…
Re: addition class (OOP Help Needed)
Programming
Software Development
14 Years Ago
by solitaryy
But I have to make a function named
addition
to go in the SqrXY class this doesn't do that. [CODE]SqrXY instance3 = instance1.
addition
(instance2);[/CODE]
Re: addition in linked lists
Programming
Software Development
14 Years Ago
by Taywin
… the adding, read each value from the list and do
addition
with the corresponding column of the incoming integer. Also, you… need a carry flag in order to deal with
addition
carry value. */ [/CODE]
Addition with Two Dimensional Arrays
Programming
Software Development
20 Years Ago
by dss1984
… to generate two random matrices and perform arthimetic procedures like
addition
and subtraction. My program generates the matrices perfectly, but I… code I have written so far for the program. The
addition
part of the code is being written in the last…
addition and subtraction
Programming
Software Development
10 Years Ago
by DS9596
…; char choice, answer; cout <<"Let's practice
addition
or subtraction with random integer numbers <100"<…--------------" << endl; cout <<"a. Practice
addition
"<<endl; cout <<"b. Practice…
Re: addition and subtraction
Programming
Software Development
10 Years Ago
by tinstaafl
Another minor point, you tell the user you're using integers but you're using doubles. A side note,multiplying the second term by -1 will change the operation from
addition
to subtraction. This is helpful in that you can now use 1 function to do either operation.
Addition machine - Same Problem on a different plane
Programming
Software Development
17 Years Ago
by frozenflame2
…; return 0; } [/code] I am trying to create an "
addition
machine". As of now, after I run the program…
Addition Of Matrices Using Pointers
Programming
Software Development
14 Years Ago
by guru_iyer
I'm trying to do
addition
of matrices using pointers. But, in 3x3 matrix, only the …
Addition to picture in JES " jython "
Programming
Software Development
13 Years Ago
by Suzan Al-amassy
… Image intermittent and I want it to appear gradually def
Addition
(Fimage1 , Fimage2 ): #Black Image1 = makePicture (Fimage1) # picture Image2 = makePicture (Fimage2…
Addition in Emu8086
Programming
Software Development
12 Years Ago
by Xhesi
… selected. I have succesfully done 0,1,3 but my
Addition
is slacking I have registered to move the result to…
Addition using 8086 emu
Programming
Software Development
12 Years Ago
by CreationK
… downloaded a 8086 simulator and tried to execute this indirect
addition
program : MOV SI,2500H MOV AL,[SI] INC SI MOV…
addition (sum) in php
Programming
Web Development
11 Years Ago
by chrisschristou
i do
addition
for 2 variable but i get only the second variable as done <?php $totalpay= ($row_panier['prix']+$shipping1);?> <input name="total" type="text" value="<?php echo $totalpay; ?>" readonly> only the number of $shipping one is show on navigator
Addition Game using an image to display a number
Programming
Software Development
9 Years Ago
by Kiri_1
Hi Guys! I'm trying to create an
addition
game with an image to display as the given number (…
Re: addition about strings
Programming
Software Development
15 Years Ago
by sourabhtripathi
Differential equations of
addition
(DEA) are of the following form: (x+y)+((x+a)+(…, b and c are known variables. The symbols + and denote
addition
modulo 2n and bitwise exclusive-or respectively. The above equation…
Re: Addition of 'n' matrices
Programming
9 Years Ago
by negru
…("%d",&pm->matrix[i][j]); } } void
addition
(MATRIX *array,int *n,MATRIX *res) { array=(MATRIX *)malloc(*n…("%d. matrix:\n",i+1); read_matrix(array+i); }
addition
(array,&n,res); print(res); for(i=0;i…
Re: Addition of 'n' matrices
Programming
9 Years Ago
by gusano79
… bit of a mess right now. For the
addition
portion, start by considering
addition
of simple integers. How would you do that…
Re: addition problem
Programming
Web Development
16 Years Ago
by ~s.o.s~
My suggested solution was to use the Number constructor so as to perform
addition
as well as validation in a single go. But some additional validation will always be required to prevent inputs like 1E2 creeping through and giving unexpected results.
Re: addition about strings
Programming
Software Development
15 Years Ago
by abhimanipal
What do you mean when you say "denote
addition
" ? Check out strtok(), atoi() you may find it useful to extract numbers from the string
Re: Addition without arithmetic operators
Programming
Software Development
10 Years Ago
by rubberman
… with that in your plus() function. Also, you are using
addition
in your signed_plus() function, which you say you are not…
Help in linked list polynomial addition
Programming
Software Development
13 Years Ago
by arunkumar267
…getdegree(); void getpolynomial(int d); void display(); void
addition
(polynomial p1,polynomial p2); }; void polynomial::getdegree()…} temp=temp->link; } } void polynomial::
addition
(polynomial p1,polynomial p2) { float coeff; int deg…
Re: Arithmetic Operators- Addition help!
Programming
Web Development
15 Years Ago
by sarithak
… quotes here; dont use double quotes for variables... [CODE]$
addition
= $proffee+$trainerfee; echo $
addition
;[/CODE] [QUOTE=lamiv007;873516]Hello, I am retrieving… from a database. I want to get the result after
addition
of the two values. the code I used is [CODE…
user input addition
Programming
Software Development
14 Years Ago
by rithish
… java.io.IOException; import java.io.InputStreamReader; public class
addition
{ InputStreamReader ins=new InputStreamReader(System.in); BufferedReader br=new… BufferedReader(ins); int a,b,c; public
addition
() { int a=Integer.parseInt(br.readLine()); int b=…
Problem with character array and binary addition
Programming
Software Development
13 Years Ago
by emitremmit
… { int i = 0; binNum num; num.numbers(); num.
addition
(); num.convert(i); //keeps the output window open cout <…carry; char result; public: binNum(); //Default constructor void numbers(); void
addition
(); void multiplication(); void convert(int); ~binNum(); }; #endif[/CODE] …
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC