Hỏi đáp
Chia sẻ kiến thức, cùng nhau phát triển
Mọi người giúp em với ! Sao em nhập N vào thì nó không đưa ra TỔNG của n vậy nhỉ ?
SEVER
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Sockets;
using System.Text;
using System.Threading.Tasks;
namespace SeverClient
{
class Program
{
static void Main(string[] args)
{
try
{
IPAddress myAddress = IPAddress.Parse("127.0.0.1");
TcpListener myListen = new TcpListener(myAddress, 8888);
myListen.Start();
Socket mySocket = myListen.AcceptSocket();
var myStream = new NetworkStream(mySocket);
var myRead = new StreamReader(myStream);
var myWrite = new StreamWriter(myStream);
myWrite.AutoFlush = true;
while (true)
{
int n = Convert.ToInt32(myRead.ReadLine());
Console.WriteLine("Nhap so N: " + n);
int sum = 0;
for (int i = 0; i <= n; i++)
sum += 2*i+1;
myWrite.Write(sum);
}
mySocket.Close();
myListen.Stop();
}
catch (Exception ex)
{
Console.Write("Loi" + ex);
}
Console.ReadLine();
}
}
}
//----------------------------------
CLIENT
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net.Sockets;
using System.Text;
using System.Threading.Tasks;
namespace ClientSever
{
class Program
{
static void Main(string[] args)
{
try
{
TcpClient myClient = new TcpClient();
myClient.Connect("127.0.0.1", 8888);
Stream myStream = myClient.GetStream();
while (true)
{
var myRead = new StreamReader(myStream);
var myWrite = new StreamWriter(myStream);
myWrite.AutoFlush = true;
Console.Write("Nhap N: ");
String n = Console.ReadLine();
myWrite.WriteLine(n);
Console.Write("Tong: " + myRead.ReadLine());
}
myStream.Close();
myClient.Close();
}
catch (Exception ex)
{
Console.WriteLine("Loi" + ex);
}
Console.Read();
}
}
}
1. Bạn có thể bỏ code vào khối code cho dễ nhìn hơn nè.
2. Tách khối lệnh client và server ra cho dễ nhìn
3. Cho mình biết rõ cách thông tin sau được k:
- Bạn đã thử debug 2 bên để xem truyền nhận tin ok chưa? Hay chỉ trường hợp này lỗi.
- Bạn đã check kết nối thành công hay k chưa.
- Bạn đã check phía server gửi tin thành công hay k chưa
- Bạn đã check client nhận tin thành công hay chưa.
Và cố gắng đừng đưa ra các câu hỏi thiếu thông tin. Cũng như cố gắng test thử trước khi thấy lỗi là quăng cả con lên cho người khác nhai cái đống "shit" của bạn nhé.
Sau này đặt code vào codeblock cho dễ nhìn nha bạn, mình sửa lại rồi đó.