Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
max
- Page 1
Cache-Control stale-if-error with s-maxage
Programming
Web Development
3 Weeks Ago
by Dani
…? An example of something we have is this: Cache-Control:
max
-age=3600, s-maxage=86400, stale-while-revalidate=3600, stale…
Re: Digital Marketing
Digital Media
Digital Marketing
1 Week Ago
by WendyDolan
… Console reports? Also curious — when you say "improve SERP
max
", do you mean for specific keywords or overall visibility…
Re: Digital Marketing
Digital Media
Digital Marketing
1 Week Ago
by G Tech
The text highlights innovativ tools like Surfer SEO, SEMrush, and AI content creators that boost website visibility and drive business growth. It also notes that building high-quality backlinks and optimising content are the most effective activities to improve SERP rankings. If you need any help just let me know
Re: Cache-Control stale-if-error with s-maxage
Programming
Web Development
1 Week Ago
by WendyDolan
This is something I’ve been wondering about too. The wording around “applicable” s-maxage overriding stale-if-error is kinda vague. From what I’ve seen, s-maxage just sets how long a shared cache (like a CDN or proxy) can consider the response fresh — so I think if the resource is still within s-maxage, then stale-if-error wouldn’t even kick in, …
Re: Differential Directory, indexing method
Programming
Software Development
2 Months Ago
by xrjf
… groups of four: (2, 5) + (1, 7) →
max
3 comparisons (3, 4) + (6, 8) →
max
3 comparisons → Total so far: 10 comparisons… of eight: (1, 2, 5, 7) + (3, 4, 6, 8) →
max
7 comparisons → Total: 17 comparisons Extending this to 16 elements…
Re: Need a small footprint desktop with decent power
Hardware and Software
1 Month Ago
by Dani
Not too long ago, I ditched a suuuuuper expensive ~10 year old Dell Precision workstation with like 64 cores or something crazy, multiple video cards, dedicated RAID controller, etc. for a much less expensive M1
Max
Macbook Pro. The macbook outperformed the Dell for everything I did by far.
max and min void
Programming
Software Development
10 Years Ago
by DS9596
…!=1; i++) { if(num==-1)break; if (num>
max
)
max
=num; if (num<min) min=num; cout <<…; "the
max
and min values of " << x <&…lt;< z << " are " <<
max
<< " and " << min; cin.…
Max
Programming
Software Development
17 Years Ago
by balla4eva33
… = arr[i]; ap += s->getAPRatio(); } cout << "
Max
APRatio = " << [COLOR="Red"][B]???[/B…] What do I need to do to actually calculate the
MAX
APRatio? "[B]getAPRatio[/B]" is being called 3… somehow compare them and take the biggest one as my
max
. I think the average is set correctly, but I'm…
Re: Max
Programming
Software Development
17 Years Ago
by balla4eva33
Ok, I think I got it...: [CODE] double
Max
(const double *Numbers, const int Count) { double Maximum = Numbers[0]; …->getAPRatio(); tempArr[i] = ap; } double Maximum =
Max
(tempArr, currCount); cout << "
Max
APRatio = " << Maximum <<…
Re: Max
Programming
Software Development
17 Years Ago
by Ancient Dragon
put them in an array then find the
max
after the loop stops.
Max is back!!
Community Center
Geeks' Lounge
14 Years Ago
by GrimJack
…][URL="http://www.youtube.com/watch?v=dFFMRXGjfNI"]
MAX
[/URL] [URL="http://www.youtube.com/watch?v=TkB_x1…://www.youtube.com/watch?v=ZEPq0FvFm3g&feature=related"]
Max
sings[/URL] - sorta
Re: Max is back!!
Community Center
Geeks' Lounge
14 Years Ago
by MosaicFuneral
I really don't know whom
Max
is, other than that once someone had a
Max
Headroom mask on while hijacking a public access station, while either seriously fucking high or very mentally unhealthy. That's the extent of my knowledge on the subject.
Re: Max is back!!
Community Center
Geeks' Lounge
14 Years Ago
by GrimJack
Among the scary things that have come true in
Max
Headroom was the armed drones equipped with facial recognition software that was flying around gunning people down. Other ideas put forth include instant ratings of network programs. Television that watches you. etc
Re: max and min improper reading
Programming
Software Development
15 Years Ago
by kamikazekazuo
… y, int z, float average, int
max
, int min); //-------------------------------------------------------------------- int main() { …// Name: FindMaxMin // Input: None // Output:
Max
and min of x, y, and z //------------------------------------- void… && y > z) {
max
= y;} else {
max
= z;} //FindMin if (x <…
max and min improper reading
Programming
Software Development
15 Years Ago
by kamikazekazuo
…x, float y, float z, float average, float
max
, float min); //-------------------------------------------------------------------- int main() { //read data… } //------------------------------------- // Name: FindMaxMin // Input: None // Output:
Max
and min of x, y, and z //------------------------------------- float FindMaxMin(int…
Max and Min calculations
Programming
Software Development
14 Years Ago
by kay19
…fin.hasNext() ) { count++; integer = fin.nextDouble(); if(integer >=
max
) {
max
= Math.
max
(
max
,integer); } if(integer <= min) { min = Math.min(min,…integer); } } range =
max
- min; System.out.println("range is " + range); } } [/CODE…
Max and Min of more than 2 numbers
Programming
Software Development
16 Years Ago
by aodpreacher
… trying to make a program that finds the
max
and min of more than 2 inputs and… trying to use the Math.Min and Math.
Max
method but i cant seem to get them…public static int
max
(int a, int b, int c); int
max
= Math.
max
(a) Math.
max
(b) Math.
max
(c);[/CODE]… can anyone help me try to find the
max
and…
max and min in array of java
Programming
Software Development
13 Years Ago
by Masque
…"); grades[i] = scanner.nextDouble(); } } public static int
max
(int[] numbers) { int
max
= numbers[0]; for(int i = 0; i < numbers… i++) { if(numbers[i] >
max
)
max
= numbers[i]; System.out.println("Maximum = " +
max
); } return
max
; } public static int min(int[] numbers…
Max and Min of list! Min = 0
Programming
Software Development
16 Years Ago
by plike922
… namespace std; int main() { int n, min,
max
; printf("Please enter a list of integers.\nSignal the… did not enter any numbers."); }else{ min = n;
max
= n; while (n!=0) { printf("Enter next number…if ( n <= min ) min = n; if (n >=
max
)
max
= n; } printf("The maximum number in the list is…
Re: Max and Min of more than 2 numbers
Programming
Software Development
16 Years Ago
by doleh
i think you must try this method for find
max
and the same method for min private int findMax(int a, int b, int c) {int
max
=math.
max
(Math.
max
(a,b),c) return
max
; }
Re: Max and Min of more than 2 numbers
Programming
Software Development
16 Years Ago
by verruckt24
…;794790]i think you must try this method for find
max
and the same method for min private int findMax(int… a, int b, int c) {int
max
=math.
max
(Math.
max
(a,b),c) return
max
; }[/QUOTE] Have you even taken care to…
Re: max and min improper reading
Programming
Software Development
15 Years Ago
by mrnutty
…]void FindMaxMin(int x, int y, int z, int &
max
, int &min) { //FindMax if (x > y &&…; x > z) {
max
= x;} if (y > x && y > z…) {
max
= y;} else {
max
= z;} //FindMin if (x < y && x…
MAX(tran_id)
Programming
Web Development
13 Years Ago
by HasNor
… respond..for the tran_id it view the
max
id but not for respond..here the…Thank you so much......... $sqlmax="SELECT
MAX
(tran_id), reqid FROM transaction AS last_id WHERE reqid…;; $rslmax=mysql_query($sqlmax); $rowmax=mysql_fetch_array($rslmax); $
max
=$rowmax['tran_id']; $sqlmax1="SELECT respond FROM transaction …
Re: Max and Min of more than 2 numbers
Programming
Software Development
16 Years Ago
by verruckt24
… to program a method to make it detect the min/
max
in an array. is there any method to just use… the Math.min/Math.
max
for trying to see which one is the largest/smallest… and Math too ? I am not against using Math.min/
max
but that's a lame excuse. Can you not compare…
Re: Max and Min of more than 2 numbers
Programming
Software Development
16 Years Ago
by masijade
[code] for (.....) {
max
= Math.
max
(
max
, ...); min .... } [/code]
Re: Max and Min of more than 2 numbers
Programming
Software Development
16 Years Ago
by verruckt24
… that ? @OP : For this one should set the min and
max
to the very first numbers from the array and then… min wherever a lower number is found and modifying the
max
wherever a greater number is found. In the end min… and
max
have the answers to your question. PS : I am surprised…
Re: max values in a col of matrix
Programming
Software Development
16 Years Ago
by ervin_c2003
…() { int A[10][10],m,n,x,y,sum=0,
max
; // Ndertojme nje Matrice A cout << "Ju lutemi… i shumave te rreshtave: "; //maximumi i shumave te rreshtave
max
=A[1][m+1]; for (x=2; x<=n…++) if (A[n+1][y]>
max
)
max
=A[n+1][y]; cout<<
max
<<endl; if(m==n) { for…
Re: max and min improper reading
Programming
Software Development
15 Years Ago
by jonsca
There's a mismatch on your signatures [code=c++] ShowAll(x, y, z, average,
max
, min); vs. void ShowAll(int x, int y, int z, float average, int min, int
max
) [/code]
Re: Max and Min of more than 2 numbers
Programming
Software Development
16 Years Ago
by aodpreacher
I just started programming in Java and i dont think i would know how to program a method to make it detect the min/
max
in an array. is there any method to just use the Math.min/Math.
max
for trying to see which one is the largest/smallest from the users input?
Re: Max and Min of more than 2 numbers
Programming
Software Development
16 Years Ago
by masijade
Yes, Math.
max
and Math.min in a loop saving the result through each iteration. Once the loop is done, you have the
max
and/or min.
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
Backlink Auditor
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC