有哪位计算机大佬能帮我解决这个问题吗?leetcode力扣显示说有错误,但我自己在dev c++能正常运行
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了有哪位计算机大佬能帮我解决这个问题吗?leetcode力扣显示说有错误,但我自己在dev c++能正常运行相关的知识,希望对你有一定的参考价值。
运行了之后,提示说:Line 42: Char 5: error: redefinition of ‘main’ [solution.c] int main(int argc, char *argv[]) 这个怎么解决啊,代码我贴下面。#include <stdio.h>int main() int a[3][3],i,j,temp; printf("array:\n"); for(i=0;i<3;i++) for(j=0;j<3;j++) scanf("%d",&a[i][j]); printf("\nnow array:\n"); for(i=0;i<3;i++) for(j=i+1;j<3;j++) if(j>i) temp=a[i][j]; a[i][j]=a[j][i]; a[j][i]=temp; for(i=0;i<3;i++) for(j=0;j<3;j++) printf("%d",a[i][j]); printf("\n"); return 0;
参考技术A 这玩意不是你代码出问题了,因为main函数根本不是你写的,应该是leetcode平台出bug了,编译时把两个以上main函数的代码放一起编译了。追问好的,多谢
参考技术B 这个题库的操作方法就是:只需要补上 欠缺的代码 即可不要写main函数了追问
好的,多谢
追答请点一下采纳按钮,非常感谢
本回答被提问者采纳我在网上找了很久。但是没有用。请帮助或尝试提供一些想法如何实现这一目标。你能帮我解决这个错误吗? [复制]
【中文标题】我在网上找了很久。但是没有用。请帮助或尝试提供一些想法如何实现这一目标。你能帮我解决这个错误吗? [复制]【英文标题】:I am searching for a long time on net. But no use. Please help or try to give some ideas how to achieve this. Can you help me solve this error? [duplicate] 【发布时间】:2018-11-16 01:14:55 【问题描述】:不行,QQ端口是435 包 com.ys.service;
import java.util.*;
import javax.mail.*;
import javax.mail.internet.*;
import javax.activation.*;
public class SendMailController
public static void main(String [] args)
// Recipient's email ID needs to be mentioned.
String to = "1255****@qq.com";
// Sender's email ID needs to be mentioned
String from = "5915******@qq.com";
// Assuming you are sending email from localhost
String host = "localhost";
// Get system properties
Properties properties = System.getProperties();
// Setup mail server
properties.setProperty("mail.smtp.host", host);
// Get the default Session object.
Session session = Session.getDefaultInstance(properties);
try
// Create a default MimeMessage object.
MimeMessage message = new MimeMessage(session);
// Set From: header field of the header.
message.setFrom(new InternetAddress(from));
// Set To: header field of the header.
message.addRecipient(Message.RecipientType.TO,
new InternetAddress(to));
// Set Subject: header field
message.setSubject("This is the Subject Line!");
// Now set the actual message
message.setText("This is actual message");
// Send message
Transport.send(message);
System.out.println("Sent message successfully....");
catch (MessagingException mex)
mex.printStackTrace();
-
错误:com.sun.mail.util.MailConnectException:无法连接到
主机,端口:本地主机,25;超时 -1;
嵌套异常为:java.net.ConnectException: Connection denied: connect;
原因:java.net.ConnectException:连接被拒绝:连接;
【问题讨论】:
这表示它无法连接到本地计算机上端口 25 上的邮件服务器。这似乎不是java问题。您是否尝试过从命令行手动发送电子邮件以查看是否有效? 您可以尝试使用主机 smtp.gmail.com 的 gmail 帐户,或者您可以在本地安装模拟邮件服务器,我认为.. 我尝试了其他端口,比如456端口,但仍然没有工作;我尝试给我的朋友发送电子邮件,似乎没有工作; Gmail,我不想显示这个Demo的密码,我用的是163.com,还是不行; 确保您已允许第三方访问您的 gmail 帐户。 myaccount.google.com/… 【参考方案1】:在我的情况下,这个问题是因为我的互联网提供商在端口 25 上有一个过滤器。我必须在我的帐户设置中停用过滤器。
【讨论】:
不,不是。您的 Internet 提供商无法阻止您连接到自己的本地主机。 我的 Gmail 被 Google 屏蔽了,天哪,我已经走到了尽头......以上是关于有哪位计算机大佬能帮我解决这个问题吗?leetcode力扣显示说有错误,但我自己在dev c++能正常运行的主要内容,如果未能解决你的问题,请参考以下文章
如何创建 C# OTA 代码以根据 ALM 中的测试计划中 Excel 中提供的路径创建文件夹。你能帮我解决这个问题吗?