英语不好,学计算机语言行吗?

qq1586667262 2010-11-29 12:59:08
26个字母都认识,但组合起来却不认识几个!
英语不好,学电脑语言吃力!

我很想学一门语言,也就选C ,把英语学好,能看懂,英文技术文章。
请问各位有什么,好的建议啊。
...全文
678 45 打赏 收藏 转发到动态 举报
写回复
用AI写文章
45 条回复
切换为时间正序
请发表友善的回复…
发表回复
赵4老师 2010-11-30
  • 打赏
  • 举报
回复
试翻译这个就知道英语重不重要了。
Format Specification Fields: scanf and wscanf Functions
A format specification has the following form:

%
  • [width] [{h | l | I64 | L}]type

    The format argument specifies the interpretation of the input and can contain one or more of the following:

    White-space characters: blank (' '); tab ('\t'); or newline ('\n'). A white-space character causes scanf to read, but not store, all consecutive white-space characters in the input up to the next non–white-space character. One white-space character in the format matches any number (including 0) and combination of white-space characters in the input.


    Non–white-space characters, except for the percent sign (%). A non–white-space character causes scanf to read, but not store, a matching non–white-space character. If the next character in stdin does not match, scanf terminates.


    Format specifications, introduced by the percent sign (%). A format specification causes scanf to read and convert characters in the input into values of a specified type. The value is assigned to an argument in the argument list.
    The format is read from left to right. Characters outside format specifications are expected to match the sequence of characters in stdin; the matching characters in stdin are scanned but not stored. If a character in stdin conflicts with the format specification, scanf terminates, and the character is left in stdin as if it had not been read.

    When the first format specification is encountered, the value of the first input field is converted according to this specification and stored in the location that is specified by the first argument. The second format specification causes the second input field to be converted and stored in the second argument, and so on through the end of the format string.

    An input field is defined as all characters up to the first white-space character (space, tab, or newline), or up to the first character that cannot be converted according to the format specification, or until the field width (if specified) is reached. If there are too many arguments for the given specifications, the extra arguments are evaluated but ignored. The results are unpredictable if there are not enough arguments for the format specification.

    Each field of the format specification is a single character or a number signifying a particular format option. The type character, which appears after the last optional format field, determines whether the input field is interpreted as a character, a string, or a number.

    The simplest format specification contains only the percent sign and a type character (for example, %s). If a percent sign (%) is followed by a character that has no meaning as a format-control character, that character and the following characters (up to the next percent sign) are treated as an ordinary sequence of characters, that is, a sequence of characters that must match the input. For example, to specify that a percent-sign character is to be input, use %%.

    An asterisk (*) following the percent sign suppresses assignment of the next input field, which is interpreted as a field of the specified type. The field is scanned but not stored.
fm484 2010-11-30
  • 打赏
  • 举报
回复
支持楼主,同样的情况出现在我这里,我一样也不认识到它,不过,慢慢来吧,总会学得到的
a564034199 2010-11-30
  • 打赏
  • 举报
回复
可以学啊,但是到了后期想提高还是得学英语,还是想对你说一句,你只要学好英语,你就已经超越大多数人了。学好英语可以看世界一流大学的开放式课程。像算法导论之类的。怎么样?是不是很诱人啊?你听的是世界一流级的课程,他们呢?你拿本英文版的书看就是,不会的查字典,几个月下来英语语法基本就学会了,然后慢慢积累就是。要有耐心、恒心就这么简单。
aa1013911535 2010-11-30
  • 打赏
  • 举报
回复
围观。。。
cx71611806 2010-11-30
  • 打赏
  • 举报
回复
问题不大,但要想成为高手还是赶紧学吧
木子小新 2010-11-30
  • 打赏
  • 举报
回复
英语~~~困扰我N年
myxia66 2010-11-30
  • 打赏
  • 举报
回复
群主 加油!
liutengfeigo 2010-11-30
  • 打赏
  • 举报
回复
英语容易赶。
King边 2010-11-30
  • 打赏
  • 举报
回复
想说点什么的,却不知道说些什么。
我也是英语垃圾啊!没有资格说些什么
miceblog 2010-11-29
  • 打赏
  • 举报
回复
确实与英语的关系不大,但是有些比如要定义一个有意义的变量。

或者在写windows应用程序的时候,看SDK文档的时候,MSDN都是英文,当然学了英语会更好。
somebody 2010-11-29
  • 打赏
  • 举报
回复
从事软件开发工作的话,一定要很好的英语!

英语差的话,现在开始补吧!来得及的!半年时间,只要坚持!就ok了!
hk2305621_1 2010-11-29
  • 打赏
  • 举报
回复
[Quote=引用 15 楼 ming901016 的回复:]
真正的C不是数学多厉害,不是英语多强劲,难、只是重复的不够! 想想千手观音的表演者、想想海伦·凯勒又聋又瞎都能成功,为什么我们四肢健全,听力眼力都正常。有这样的优势还不够吗?
最后重复一句"难、只是重复的不够!"



加油!
[/Quote]

说的很好。。
bean11222 2010-11-29
  • 打赏
  • 举报
回复
[Quote=引用 11 楼 greyillusion 的回复:]
不是差到离谱就行了
[/Quote]
支持!
赵4老师 2010-11-29
  • 打赏
  • 举报
回复
英语也是一门计算机语言!
Noak_ark 2010-11-29
  • 打赏
  • 举报
回复
最好还是具备这个能力
wang1990yujin 2010-11-29
  • 打赏
  • 举报
回复
顶呀!!好多好计算机的书都是用英语写的,以后就算是你以后的基础!!!!
[Quote=引用 7 楼 milkylove 的回复:]
英语水平在学计算机初期影响不太大,越学得深入,英语水平影响越大。
[/Quote]
wxwlll 2010-11-29
  • 打赏
  • 举报
回复
没事,刚开始都是痛苦的。坚持一下!
黑色价值 2010-11-29
  • 打赏
  • 举报
回复
我想应该边学C语言边学一些C里常用的英语单词...

我个人认为,只要是高中毕业的,

C语言里面没多少单词不认识.这只是个人的看法,

想听听其他人的高见...
xt81944008 2010-11-29
  • 打赏
  • 举报
回复
就是 英语没什么的
kingm 2010-11-29
  • 打赏
  • 举报
回复
真正的C不是数学多厉害,不是英语多强劲,难、只是重复的不够! 想想千手观音的表演者、想想海伦·凯勒又聋又瞎都能成功,为什么我们四肢健全,听力眼力都正常。有这样的优势还不够吗?
最后重复一句"难、只是重复的不够!"



加油!
加载更多回复(24)

69,369

社区成员

发帖
与我相关
我的任务
社区描述
C语言相关问题讨论
社区管理员
  • C语言
  • 花神庙码农
  • 架构师李肯
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧