The externally observable consequences of calling a program on some input

learn more… | top users | synonyms

0
votes
1answer
90 views

VBA Excel Printing data into Immediate Window about a range data to test understanding

I am wanting to do a series of small tests that helps builds my understand as I work around a small business problem of generating data in the correct manner. My first approach is to prove for myself ...
0
votes
6answers
93 views

How do i output a log in Android?

I have seen like a million different log functions , like log.i , log.v , log.d . I just want to output a simple string on the log some times in my code to see if everything is working ok for ...
0
votes
2answers
76 views

trie implementation JAVA [closed]

how do I build a trie in java ? any links
3
votes
1answer
44 views

Append columns to rows satisfying certain conditions

I'm new to SO, and to the R programming language. I have two datasets in csv format. They each contain several columns. Let's say: - the 1st file a.csv contains columns A, B, C, D - the 2nd file ...
0
votes
2answers
53 views

Linux python read output from a running python script

I have a python script running as service in linux (also as autorun), and it does plenty of output! How can I read this output when the program is already running? Maybe I could log all the output ...
1
vote
1answer
20 views

fscanf reads incorrect value ? -Xcode

I've placed File.rtf in the directory library/Developer/Xcode/DerivedData/Test(projectname)/Build/Products/Debug and the code seems to open it but prints out the wrong output.The output is 1606422622 ...
0
votes
1answer
60 views

c# execute shell command and get result [duplicate]

I am executing a command prompt command as follows: string cmd = "/c dir" ; System.Diagnostics.Process proc = new System.Diagnostics.Process(); proc.StartInfo.FileName = "cmd.exe" ...
1
vote
4answers
65 views

Writing a C++ vector to an output file

ofstream outputFile ("output.txt"); if (outputFile.is_open()) { outputFile << "GLfloat vector[]={" << copy(vector.begin(), vector.end(), ostream_iterator<float>(cout, ", ")); ...
0
votes
1answer
53 views

Servlet retrieves XML from URL and returns XML response

On a project I am doing I have been forced into developing a server side part due to restrictions of the "Same Origin Policy" in browsers, that prevents the AJAX making requests to anything outside of ...
2
votes
5answers
88 views

Java factorial output

I am supposed to create a program that asks the user for a number and takes the factorial of that number then asks if they want to do another factorial (Y,N). It is supposed to work like this: ...
0
votes
2answers
41 views

How do i format the ouput of a list of list into a textfile properly?

I am really new to python and now I am struggeling with some problems while working on a student project. Basically I try to read data from a text file which is formatted in columns. I store the data ...
0
votes
1answer
90 views

Showing Trigger DBMS_OUTPUT.PUT_LINE in Oracle Apex

I have a trigger: CREATE OR REPLACE TRIGGER Med_Allergy_Warning BEFORE INSERT ON Prescription FOR EACH ROW BEGIN IF (Find_ADR(:NEW.Visit_ID, :NEW.Medication_ID) != 'GOOOO') THEN ...
0
votes
1answer
80 views

input a string into a 2d array while also adding different chars inbetween

I am trying to make a board game. I have to input a .txt file and make it almost as a grid F.F ... ....... SSSSSSS SSSSSSS SSS SSS And have it come out as 7 F-.-F |\|/| ...
0
votes
2answers
52 views

<C++> Struct the code output

#include <iostream> #define _USE_MATH_DEFINES #include <math.h> using namespace std; struct sphere_t { float radius; }; sphere_t sph = { 5.8 }; void SphereDescription(sphere_t ...
1
vote
1answer
52 views

Writing to CSV from list, write.row seems to stop in a strange place

I am attempting to merge a number of CSV files. My Initial function is aimed to: Look Inside a directory and count the number of files within (assume all are .csv) Open the first CSV and append each ...
0
votes
0answers
80 views

codeigniter output html

i use this trick for minify output html in codeigniter link here <?php class Minifyhtml { function output() { $CI =& get_instance(); $buffer = ...
0
votes
2answers
38 views

Matlab: how to work with different outputs of function

I've got the function function [imag2] = sumIntegral(x,w,a,b,c,p) imag2 = zeros(p-1,p); for k = 1:p-1 f = @(t)(1:p-1==k)*Integrand[1](t,x,w,a,b,c); imag2(k,:) = quadv(f,x(k),x(k+1)); end ...
0
votes
1answer
29 views

Where is standard output for android development on Netbeans?

I am developing an android app on netbeans. If, for example, I were to add System.out.println("Hello World") attached to a button click, it does not output anywhere. Am I missing something basic? ...
1
vote
3answers
70 views

Include surrounding lines of text file match in output using Python 2.7.3

I've been working on a program which assists in log analysis. It finds error or fail messages using regex and prints them to a new .txt file. However, it would be much more beneficial if the program ...
1
vote
1answer
56 views

Python lists - avoiding writing too many list files

My simple code so far does lists and manage them... I will put a piece of it below: import operator original_flightevent = 'flightevent.out.1' new_sorted_flightevent = 'flightevent.sorted.out.1' ...
5
votes
2answers
76 views

round numbers in R output

I would like the output of my R console to look readable. To this end, I would like R to round all my numbers to the nearest N decimal places. I have some success but it doesn't work completely: ...
0
votes
0answers
23 views

Print data from com port

Much like a usb barcode scanner reads and then displays data to text then returns cursor to the next line. I need a way that can I display data from a com port, more specifically, and rfid reader. In ...
0
votes
1answer
61 views

How to make an end of file output it's data?

this is my first time asking a question so forgive me if I stumble over anything. I have been working on a project for a suspension system for a car. I needed to make 4 functions for the displacement ...
0
votes
4answers
61 views

Array output problems?

Hello StackOverflow Community, I am having a problem with some output involving adding elements into an array. I had created a program in class and it ran properly but when I run the same ...
-2
votes
1answer
17 views

Adjusting Output (Wordwrap maybe?) [closed]

My output needs to look like this : There are 8 prime numbers less than or equal to 19 2 3 5 7 11 13 17 19 There are 95 prime numbers less than or equal to 500 2 3 5 7 11 13 17 19 ...
1
vote
1answer
47 views

Running a jar with python and passing input/output

So I've looked a bit into the subprocess library, and I think that it is the right library to use, but I can't seem to find out how one would go about passing input to the program during runtime. I ...
0
votes
2answers
41 views

Weird Output with first case integer

Here are two functions below that compile perfectly but I seem to be getting a weird error with the very first inputted integer. I have tried debugging in GDB but when it's only the first inputted ...
1
vote
1answer
160 views

XML and XSLT to write output to text file

I am trying to use increment in XSLT. and write the output to txt file. Here's my code: Xslt code: <?xml version="1.0"?> <xsl:stylesheet version="1.0" ...
1
vote
2answers
79 views

Java Exception wrong printing

Hello I'm running this code: public static int chooseOption() { int choice = 0; System.out.println("Enter number [1, 2, 3..]"); do { try { choice = sc.nextInt(); ...
1
vote
3answers
50 views

When I get a value from a registry key I get System.Byte[]

In C#, I'm trying to obtain the value of a registry key. It is a binary key. The code I'm using RegistryKey regKey = Registry.LocalMachine; regKey = ...
0
votes
2answers
73 views

Beautifying the output of Matlab aka human-readable form for output?

syms x y z; solve(x==y+1, y^2==z,z==9) ans = x: [2x1 sym] y: [2x1 sym] z: [2x1 sym] and now I want to see the results like Mathematica outputting ...
0
votes
0answers
44 views

Java - Fast IPC over Files

I have two application, the first one is a Java application for evaluation and the second one can be of every possible language. The Java application writes into a text file and call the second ...
1
vote
1answer
58 views

Save JS output with PHP

i want to save output/result of JavaScript code. For example: <script>document.write(navigator.appVersion)</script> For PHP i have no problem: $ip = $_SERVER['REMOTE_ADDR']; $file = ...
0
votes
0answers
66 views

Toad - DBMS_OUTPUT.PUT_LINE

With my projects, I build stored procedures using Toad on Oracle etc. One thing is bugging me a little. I want to be able to watch a variable in a stored procedure by enabling DBMS_OUTPUT and thus ...
0
votes
0answers
69 views

buffer text for output in c

I'm trying to make a sequencer in C that handles text files with characters 'a' 'b' '%' etc, and then display's them in a sequence, one at a time, so I would like to buffer them somehow, but I'm not ...
0
votes
3answers
107 views

C++ file writing/reading

I'm trying to create an array, write array to the file and than display it. It seems to be working but i get just part of the output (first 3 elements) or i get values over boundaries. #include ...
0
votes
2answers
52 views

How to change the output message of a search?

I would like to change the output message when a search is done. p.e. when I do a search with a very long regex and nothing has been found vim returns the message E486: Pattern not found: .... very ...
0
votes
1answer
88 views

How to output a 2 dimensional array to a csv file in perl

How can I output a 2 dimensional array to a csv file in perl? For example I have constructed a dimensional array as: for my $i(0..100) { for my $j (0..50) { $data[$i][$j]=0; } } ...
0
votes
3answers
42 views

Difference in variable value inside and outside a function

I wrote a program in which I found the area of cylinder using a functionarea with a return-type and without parameters. answerwas returned to main function. However, I am getting different output in ...
0
votes
1answer
46 views

How do I make a method in CakePHP output normal HTML after defaulting the controller to JSON?

I'm building an Android application and I'm using CakePHP on my server-side. I have a UsersController where it returns JSON data for login, register, etc, apart from accountActivation. Since this ...
0
votes
1answer
72 views

HTML5 - choose formula for output element based on input

I am designing a simple calculator, which has 3 inputs and one output. I wonder if it's possible to change the formula the output element "uses", based on which input-fields are used (*). For ...
0
votes
1answer
28 views

String return function redirect to other page in Asp.Net MVC

I have one function that return string value from that function. Here below shown my some code <code> public string MainPane() { if (Request.Cookies["Cookie"] != null) { try { //DO ...
-1
votes
4answers
245 views

How to output the response HTML data by an jQuery AJAX request?

I have an online shop with a shopping cart. The cart, which is a <table>, refreshes its content after adding an article to the cart. I use jQuery's AJAX method which receives HTML ...
0
votes
1answer
28 views

NASM Matrix not giving correct Output; also segfaults when using desperate code

I have a problem where the user is expected to input their chosen dimensions for determining the size of a matrix, read in numbers one at a time and then output the largest number. Here is my ...
0
votes
1answer
37 views

How do I print to screen while accepting input that doesnt get deleted and echoed

I have found the following code: import threading from time import sleep import os class test: def __init__(self): self.running = True def foo(self): while(self.running): ...
0
votes
2answers
36 views

Input and output array don't match

I am writing a program for a class at school and I cannot get the program to print out what I type in. The problem states that the first line needs to contain the number of questions on an 'exam' ...
1
vote
1answer
58 views

Horspool Output wrong

this is a bit of a homework problem. I have a java program to calculate if a certain pattern/string is in a user-entered string of text. The program works, but always outputs a -1, which is what it ...
0
votes
3answers
43 views

JQuery - output object as text?

So, I've got a widget that is looking to output live HTML source as text, as part of a review process. Is there a way that I can take a selected element, append it to a target div, and have it output ...
0
votes
0answers
33 views

No output in .dat file

I'm trying to write a C program to generate the Mandelbrot set. I tried to make the output plot with GNU but get the error "unreadable file. No data in plot". However, I checked that the actual values ...
0
votes
0answers
57 views

Visual Studio 2010 output window selective trace output

I'm trying to debug my application but some of the assemblies my code refers to produce too much of trace messages which flood the output window. This way the messages I have placed in my code get ...

1 3 4 5 6 7 16