Skip to main content
Stack Overflow
  1. About
  2. For Teams
Filter by
Sorted by
Tagged with
4 votes
2 answers
158 views

So I have this code here #include <stdio.h> typedef union Converter { char *c; int i; } Converter; int main(int argc, char **argv) { Converter f; f.c = argv[argc - 1]; int ...
Advice
0 votes
1 replies
88 views

I was working on this elliptic curve equation: y^2 = x^3 - 228n*x - (432n^6 - 1368n^3 - 361) and using SageMath, I have been able to develop rational points for the cases n = 1, 3 and 4. For the case ...
0 votes
2 answers
141 views

In an excel cell, I have a large number represented as a string, lets say 12345689994765411. I am looking for a way to reverse the bytes inside that number to get the decimal representation of that ...
Manuel Selva's user avatar
  • 19.2k
2 votes
2 answers
78 views

I have 2 inputs (date and number) in view - blade, like this: <div class="col-3"> <label for="jatuhtempodate">Jatuh tempo</label> <input name="...
0 votes
0 answers
78 views

I would like to resize the spinner buttons of the number input I declared in a ion-alert. view of the too small spinner buttons I tried tips I found but it does not work in my case. In my ts file: ...
3 votes
1 answer
126 views

I'm working on a mathematical problem that involves the following identity, and I want to find positive integers k,n,x such that all four terms in the equation are perfect fourth powers and the ...
2 votes
2 answers
141 views

I'm trying to write a Python script to search for integer solutions (x, y) with x ≠ y to the following Diophantine equation: (y + n)^4 - y^4 = (x + k)^4 - x^4 Here: n and k are fixed small positive ...
3 votes
2 answers
184 views

I’m trying to compute the difference between two square roots in JS. function deltaSqrt(x) { return Math.sqrt(x + 1) - Math.sqrt(x); } console.log(deltaSqrt(1e6)); // 0.0004999998750463419 ...
-4 votes
1 answer
80 views

fun main() { var numbers =("1,2,3,4,5,6") val result = numbers . sum () println ("$result ") } I wanted to calculate these numbers with the sum function, but it ...
-1 votes
1 answer
44 views

I have a numbered list that has large round numbers for steps in a corresponding image. This works, but want the text and supporting text to align tight with the round number. As in Step 3 in the ...
slang75's user avatar
2 votes
2 answers
133 views

I am trying to create a Python class that does operations mod n. For example using mod 100: 11*11==21 66+たす39==5 1+たす2+たす3-ひく30==73 2**10==24 This is how I am doing it: class ModInteger: def __init__(...
0 votes
1 answer
391 views

I have two conflicting mindsets: Mindset 1: JSON numbers are always double-precision floating point numbers. Therefore: There is no semantic difference between 1 and 1.0 - both represent the same ...
3 votes
3 answers
131 views

#include <stdio.h> #include <stdlib.h> #define MAX_SIZE 100 // Maximum size of the arrays int main() { FILE *file; int array1[MAX_SIZE], array2[MAX_SIZE]; int i = 0, j = 0; ...
1 vote
4 answers
105 views

My code looks like this. Get random values but some consecutively such as 10 after 10. var numArr = [Int]() for _ in 0..<10{ var numbers = Int.random(in: 0...10) numArr.append(numbers) } ...
1 vote
3 answers
119 views

In a new variable row2, how to repeat a sequential numbering (here a sequence from 3 to 6) by group of duplicated row1 values, which would start from a given value (here from row1 = 3), even if the ...
denis's user avatar
  • 1,164

15 30 50 per page
1
2 3 4 5
...
814

AltStyle によって変換されたページ (->オリジナル) /