初学者的编码帮助 [英] Coding Help For Beginners

查看:99
本文介绍了初学者的编码帮助的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

作为一名新成员,我想了解更多关于这个社区的信息,对于你们来说,建议哪种语言最适合当代软件需求将会非常有帮助。因为我也是这个领域的学生,所以在这方面的任何建议或推荐都会非常有帮助。



谢谢你

解决方案

嗯,了解社区的最佳方式是参与并环顾四周。



如果不知道要求是什么,建议某种语言并不是真正有效的评论。这种知识来自时间和经验。


建议语言? ......这取决于。



无论如何,这里有一个很好的链接供你学习。 需要教育 [ ^ ]


好吧,因为你是编程世界的新手,所以常见问题某人或在你脑海中提出类似你问题的东西是非常普遍的。如果你问我,那么我应该说这并不重要。是的,相信我,语言规范在编程时无关紧要或应用程序开发



你唯一需要注意的是编程背后的逻辑。是的,这就是如果您的逻辑清晰,那么您可以用您想要的任何语言编写程序。



让我们来讨论一下这个问题。将2个数字相加的简单程序。参见代码示例:

在Java中:

  int  num1 =  10 ; 
int num2 = 20 ;
int sum = num1 + num2;
System.out.println( sum为 + sum);



在C#中:

  int  num1 =  10 ; 
int num2 = 20 ;
int result = num1 + num2;
Console.WriteLine( sum is + result);
Console.ReadKey();



在Python中:

 x =  10  
y = 20
sum = x + y
print (sum)



现在告诉我,语言真的很重要,只考虑符号之间的一些差异?


As a new member I want to know more about this community and it will be very helpful for you guys to suggest which language will be the best for current generation software needs. As I am also a student in this field any suggestion or recommendation in this area would be very helpful.

thank u

解决方案

Well, the best way to learn about the community is to get involved and look around.

Suggesting a language is not really a valid comment someone could make without knowing what the requirements are. This sort of knowledge comes with time and experience.


Suggesting language? ...... It depends.

Anyway here a good link for you on learning. Education Needed[^]


Well,as you are a newbie in programming world,so it is common to ask someone or raise something like your question in your mind is very common.If you ask me,then i should say that doesn't really matter.Yes,believe me, language specification really doesn't matter in case of programming or application development.

The only thing that you need to careful about the logic behind the programming.Yes, this is the thing that sits over the top of any programming language.If your logic is clear,then you can do a program in whatever language you want.

Let's discuss about a very simple program that would sum 2 numbers.See code examples:
In Java:

int num1 = 10;
int num2 = 20;
int sum= num1 + num2;
System.out.println("sum is " + sum);


In C#:

int num1 = 10;
int num2 = 20;
int result = num1 + num2;
Console.WriteLine("sum is " + result);
Console.ReadKey();


In Python:

x = 10
y = 20
sum = x+y
print(sum)


So now tell me,does language really matter,only considering some differences between symbols?


这篇关于初学者的编码帮助的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆