Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~4K People Reached
Favorite Forums
Favorite Tags
Member Avatar for andreas.petrou.967

Hello, any body. How to check the handler socket is dissconcted? if try this if (handler.Dissconcted) but not accepted from c#.

Member Avatar for andreas.petrou.967
0
100
Member Avatar for andreas.petrou.967

hey,i jave this code. how to check the textbox (mname) to accept only letters? <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <link rel="stylesheet" type="text/css" href="mystyle.css" /> <!--- call my style --> <head> <title>Home page - MidermFaill2015 - Andreas Petrou</title> <!--- title of page --> <!--Andreas Petrou 8600--> </head> …

Member Avatar for andreas.petrou.967
0
295
Member Avatar for andreas.petrou.967

Sort numbers random in array import java.util.*; class FillAndSort { public static void main( String[ ] args ) { if ( args.length != 1 ) { System.err.println( "java FillAndSort <number of doubles>" ); return; //*** exits main and, therefore, the program stops } int n = Integer.parseInt( args[ 0 ] …

Member Avatar for JamesCherrill
0
181
Member Avatar for andreas.petrou.967

I have write this program,how to sort the numbers? // ddd.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include<iostream> using namespace std; struct nodeType { int data; nodeType *link; }; nodeType *head; int main() { // // Init the list // nodeType *first; nodeType *last; …

Member Avatar for andreas.petrou.967
0
199
Member Avatar for andreas.petrou.967
Member Avatar for andreas.petrou.967

I have this program Define a function hypotenuse that calculates the length of the hypotenuse of a right triangle when the other two sides are given (22__hsideasideb=+). Use this function in a program to determine the length of the hypotenuse for each of the triangles shown below. The function should …

Member Avatar for andreas.petrou.967
0
2K
Member Avatar for andreas.petrou.967

I have this program,how to find reverse numbers? #include<iostream> #include<fstream> #include<string> using namespace std; const int array_size = 10; //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ //function to enter the number choise1/// to "&" dieuthinsi noumerou void get_numbers(int num_arr[array_size], int& numbers){ int count; cout << "How many numbers do you want to enter? "<<endl; cin >> …

Member Avatar for kplcjl
0
357
Member Avatar for andreas.petrou.967

Write a C++ code which will display the following menu, ------------- Menu ---------- ----------- 1.Read a list of numbers. 2.Display list. 3.Save list to File. 4.Load list from file 5.Search for a given number in the list. 6.Reverse list. 7.Calculate the sum of the list. 8.Calculate the average of the …

Member Avatar for richieking
0
167
Member Avatar for andreas.petrou.967

How to find this average for this programm read 3 grades for students #include <iostream> #include <string> using namespace std; const int arr_size = 30; const int name_size = 20; void f_name_s(char name[name_size][arr_size], int math[arr_size],int history[arr_size],int physics[arr_size],int& num_s); void display_arr(char dstuds[name_size][arr_size], int math[arr_size],int history[arr_size] ,int physics[arr_size], int stud_num); //********************************************************* void …

Member Avatar for andreas.petrou.967
0
146
Member Avatar for andreas.petrou.967

Write a C++ code which will display the following menu, -------- ------------- --- Menu -- ---------- ------- ----------- 1.Read a list of numbers. 2.Display list. 3.Save list to File. 4.Load list from file 5.Search for a given number in the list. 6.Reverse list. 7.Calculate the sum of the list. 8.Calculate …

Member Avatar for andreas.petrou.967
0
193
Member Avatar for andreas.petrou.967

Write a program to read an unknown number of integer numbers stored in a file nums.txt and calculate the number of negative, the number of positive numbers and the number of zeros. Your application should display on the screen the number of negative and positive numbers as well as the …

Member Avatar for andreas.petrou.967
0
123