Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
首先这是一个家庭作业:
我需要仅使用 for 循环来遍历一段文本以查找文本的长度。我们不允许使用字符串函数或数组函数。
我对如何做到这一点一无所知。
谁能提供一个基本的例子?我在这里和 cplusplus.com 论坛上看到了几个关于如何执行此操作的示例,但没有一个用于循环。
这样的事情会做:
char str[256] = "some text here"; int length = 0; int i = 0; char c; for(c = str[i]; c != '\0'; ++i) { length++; }
但是请..不要使用堆栈溢出作为做作业的捷径。您仍然需要花时间学习所有编程基础知识。如果您遇到非常具体的问题,请仅在此处询问