如何使用此代码制作算法/伪代码?
此代码是C语言程序,用于计算单词中的空格数。
我不知道如何从中做出伪代码。
#include <stdio.h>
#include <string.h>
void checkSpace(char word[])
{
int i;
int numberspace=0;
for(i=0;i<strlen(word);i++)
{
if(word[i] == ' ')
{
numberspace++;
}
}
printf ("Your word have space : %d",numberspace);
}
int main()
{
char nama[50] = "george";
checkKata("george lim");
getchar(); return 0;
}
答案 0 :(得分:0)
没有通用的伪代码标准。只需解释一下该程序用英语做什么。
for i from 0 to the size of the word:
if the ith character is a space, ....