C++ Programming for Medical Imaging- Question4
// Question4.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include <iostream>
using namespace std;
// 题 A
int str_len(const char *pStr)
{
int nLen = 0;
if (NULL != pStr)
{
while ((*pStr++) != '\0')
{
nL...
原创
2020-12-08 18:59:32 ·
134 阅读 ·
0 评论