Posts by Charles Messias • 80 points
4 posts
-
1
votes2
answers345
viewsA: Breaking a string containing a polynomial
It worked out well! code I made an example of now I can walk from here, thank you! public static void main(String[] args){ String poli = "-3x^3 - 3x^2 + 4"; Pattern.compile("(?=[+-])").split(poli);…
-
3
votes2
answers345
viewsQ: Breaking a string containing a polynomial
I created a class with two properties as in the example below: class Polinomio { private int coeficientes; private int expoente; } I will create a list to receive a polynomial type where I will…
-
0
votes1
answer1315
viewsA: How to run a script before a view on sql server?
Code Below creates the code below. create procedure ProcedureTeste as DROP TABLE dbo.tblTemporaria; SELECT CONVERT(VARCHAR(10), dbo.compra.data_entrada, 103) AS [Data Entrada CTE], dbo.compra.codigo…
-
2
votes1
answer46
viewsQ: Change Preview text (Xtrareport)
would like to change the text of the Preview of a report Xtrareport. See image below :…