Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
input-output
- Page 1
Integrating OpenAI Web Search API in LangGraph
Programming
Computer Science
18 Hours Ago
by usmanmalik57
… that contains three attributes: the user
input
, the AI message (response from the LLM), and the
output
, which contains the response's… attribute of the LLM response. ```python class WebState(TypedDict):
input
: str ai_msg: AIMessage
output
: str def ask_web(state: WebState) -> WebState: # State…
Re: Java Coin Flip Program
Programming
Software Development
5 Days Ago
by jassonadder
… idea—it’s a great beginner project to practice loops,
input
, and class methods in Python. Here’s a sample program…;Total Tails:", self.tails) # Main program try: flips = int(
input
("How many times would you like to flip the…. Let me know if you want a version with file
output
or a GUI later on—happy to help!
Re: Cannot run exe from asp.net
Programming
Web Development
2 Weeks Ago
by lennyli
…)) # Replace with the server's IP address while True: command =
input
("Enter command (move, click, type, exit): ") if command…; on the client pc, it waited a few seconds, then
output
the error: C:\Users\maxwi>python client.py Traceback…
Re: Best way to find a segment of code that matches a given input segment?
Programming
Software Development
2 Months Ago
by Dani
… target article ranked_articles = [article for article, score in sorted_similarity_scores] 7.
Output
the ranked list of articles return ranked_articles I'm not…
Re: How Can I Hookup My Mobile Phones To My PC Monitor ?
Hardware and Software
Hardware
Mobile and Wearables
1 Month Ago
by Fitmovers
If you want to connect your Samsung Galaxy A9 to your Dell E1916HV monitor, you'll need a USB-C to HDMI adapter (if your phone supports HDMI
output
). Since your phone has only USB ports, check if it supports Samsung DeX or screen mirroring via an MHL adapter. If your monitor only has VGA
input
, you might also need an HDMI to VGA converter.
Re: Question/Answering over SQL Data Using LangGraph Framework
Programming
Computer Science
1 Month Ago
by Pelorus_1
Through its combination of natural language processing and structured query generation, LangGraph makes interfacing with databases and extracting insights over SQL data easier than ever.
Re: Input/Output with multiple forms
Programming
Software Development
13 Years Ago
by laguardian
Hmmmm... So basically, in the MainProject package, I'll have four .java files:
Input
,
Output
, MainProject, and the model class. The model class contains the logic and formulas of the whole package? Am I on the right track?
Re: Input/Output with multiple forms
Programming
Software Development
13 Years Ago
by JamesCherrill
… etc) and the logic needed to make them work, eg
Input
,
Output
. You may even have a choice of user interfaces (eg…
C++ File Input/Output Help
Programming
Software Development
14 Years Ago
by rayborn66
Hi, I am having a problem with using file
input
/
output
streams in this program. [CODE] #include <fstream> using…click create new text document named infile.txt in notepad
input
numbers into new text document named infile.txt 3. …then outputs all the text the program is supposed to
output
except that the sum of the numbers in the end…
create WSDL by input/output files
Programming
Web Development
13 Years Ago
by Gabit
According to
input
&
output
xml files, I need to create wsdl file for describing web service:
Input
xml-file (request): [CODE]<?xml….4050385+06:00</OrderDate> </PEP_IBANCheckRequest>[/CODE]
Output
xml-file (response): [CODE]<?xml version="1.0…
ProgramIntro(input,output)
Community Center
Say Hello!
20 Years Ago
by techied
Program(
input
,
output
) var yourname:string; x:integer; Begin writeln('Please enter your …
USB tuner control instructions input output
Hardware and Software
Hardware
16 Years Ago
by monere
…, I want to write an application software to control the
input
output
of the usb tuner. The tuner won't be controlled…
Input/Output help
Programming
Software Development
15 Years Ago
by xcarbonx
… 92 105 Sample
Output
: ***Exam Report*** 77 Passed -45 Invalid
Input
33 Failed 92 Passed 105 Invalid
Input
here is my …<< endl; }[/CODE] The problem is both my
input
and
output
, i cannot figure out how you are able to enter…
Re: Input/Output help
Programming
Software Development
15 Years Ago
by xcarbonx
actually, my teacher would like the
output
to be displayed as shown in the sample, so do i have to use an array to do so then?
Re: Input/Output help
Programming
Software Development
15 Years Ago
by WaltP
I think what you have is basically fine for a start. You just have to have some way to exit your
input
loop -- maybe by entering a grade like -999 as the exit criteria. Keeping count of how many grades were entered makes the
output
loop easy.
Re: Input/Output help
Programming
Software Development
15 Years Ago
by Ancient Dragon
… file so that they can be read back after all
input
is done and displayed like your teacher wants it.
Input/Output
Programming
Software Development
14 Years Ago
by doggie123
… "Convert your program to run from an
input
file instead of console
input
." I'm suppose to have a .txt… thats suppose to have numbers for the average rainfall and
input
it into what I have so far. I really don…
input/output
Programming
Software Development
12 Years Ago
by wesk18
… to create a script or program that allows me to
input
data and gives me the result so i can copy…
Output error
Programming
Software Development
14 Years Ago
by icpeople
… taxes in decimal (tax[]) form. Then it should
output
the
input
in a tax table,
output
the computed amount for 4 brackets, and…, tax_l, total; int a = 0; //Function void
input
(); void
output
(); int main() {
input
();
output
(); return 0; } //
Input
Function void
input
() { //Inputs for (a = 0; a <…
Output not working
Programming
Software Development
13 Years Ago
by fmasroor
… <Windows.h> using namespace std; void main() { fstream
input
,
output
; int in1=0, in2=0, x=0, k=0, l…=0;
input
.open("
input
.txt", ios::in);
output
.open("
output
.txt", ios::out); while(
input
.good()) {
input
>>in1;
input
>>…
Input/Output with multiple forms
Programming
Software Development
13 Years Ago
by laguardian
… help. I have two forms:
Input
and
Output
. On the
Input
form, the user/s will have to
input
their name/s and times… in which they are busy. When they click "finished", the
Output
form… do this? How do I get inputted info from the
Input
form and display it on the
Output
form?
Re: Input/Output with multiple forms
Programming
Software Development
13 Years Ago
by JamesCherrill
…set of data collected in the
input
form, so it can be passed to the
output
form as a single object.…new CD, set its values from the
input
form fields, and create a new
output
form to display it... [CODE]nextCD =…albumNameTextField.getText()); new OutputForm(nextCD);[/CODE] finally, in the
output
form, have a constructor that takes a CD and …
Re: Input/Output with multiple forms
Programming
Software Development
13 Years Ago
by JamesCherrill
… generally referred to as a "model". In your
input
form you create a new instance of the model class…, and populate its fields with the data from the
input
form. The
output
form should have a constructor that takes an instance… that instance. All the
input
form has to do is to create a new instance of the
output
form, passing the model…
Re: Input/Output with multiple forms
Programming
Software Development
13 Years Ago
by laguardian
In my MainProject package, I have three files:
Input
.java,
Output
.java, and MainProject.java. Should I create the "model" class in the MainProject.java? Or should I create another form for this "model" class?
Bash script to capture input, run commands, and print to file
Hardware and Software
Linux and Unix
13 Years Ago
by mikeandike22
input
and returning the
input
:
output
. Here is the assignment In the session, provide a command …/hw8$ Accept user’s commands, execute them, and display the
output
on the screen. During the session, create a temporary file… If the script is aborted by CTRL+C (signal 2),
output
a message “aborted by ctrl+c”. When you quit the…
input output in regards to dev c++ vs xcode
Programming
Software Development
14 Years Ago
by beejay321
… computing project we have just started to work with using
input
and
output
of text files, the tutorial my teacher gave said…] ifstream fin; //fin is my file
input
variable ofstream fout; //fout is my file
output
variable[/CODE] the problem is dev c…
Re: Input/Output with multiple forms
Programming
Software Development
12 Years Ago
by marzii
… seconds) ** this is all of things that java shows in
output
win!!! can you help me to see that's in…
Input, Output--- From Text to Binary
Programming
Software Development
14 Years Ago
by triumphost
… I want... I want to read the Dictionary file, and
output
its contents into the dynamic-text.dat file... But it… If I altered the program to allow the user to
input
a string of words into the file, it will only…
input
the first word.. anyone got any ideas? [CODE] #include <…
Input / Output from file
Programming
Software Development
14 Years Ago
by tomala90
… items from a text file whose name is
input
by the user and also
output
the receipt to a text file whose… name is
input
by user. I got stock for about…
Re: Input-output data format
Programming
Software Development
10 Years Ago
by tinstaafl
… Matrix(); static void Read(char *fname, Matrix
input
[]); static void Writedata(Matrix
input
[], size_t size); }; The functions for handling the…Matrix::Matrix() { numOfRows = 0; } void Matrix::Read(char *fname, Matrix
input
[]) { int i = 0, m_count = 0; string temp = ""…
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