自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

了解➔熟悉➔掌握➔精通

为之,则难者亦易矣;不为,则易者亦难矣。

  • 博客(6)
  • 收藏
  • 关注

原创 C - Wrap very long lines of input into two or more shorter lines

分享一个大牛的人工智能教程。零基础!通俗易懂!风趣幽默!希望你也加入到人工智能的队伍中来!请点击http://www.captainbed.net /* * Write a program that wraps very long lines of input into two or more shorter lines. * * WrapLine.c - by FreeMan */ #include <stdio.h> #define MAXLINE 1024 /* max i

2021-01-27 15:38:16 185

原创 C - Check a C program for rudimentary syntax errors

分享一个大牛的人工智能教程。零基础!通俗易懂!风趣幽默!希望你也加入到人工智能的队伍中来!请点击http://www.captainbed.net /* * Write a program to check a C program for rudimentary syntax errors like * unmatched parentheses, brackets and braces. Don’t forget about quotes, * both single and double, e

2021-01-22 11:15:07 257

原创 C - Remove all comments from a C program

分享一个大牛的人工智能教程。零基础!通俗易懂!风趣幽默!希望你也加入到人工智能的队伍中来!请点击http://www.captainbed.net /* * Write a program to remove all comments from a C program. * Don’t forget to handle quoted strings and character constants properly. * C comments don’t nest. * * RemoveComm

2021-01-21 11:21:48 216

原创 C - Reverse character string

分享一个大牛的人工智能教程。零基础!通俗易懂!风趣幽默!希望你也加入到人工智能的队伍中来!请点击http://www.captainbed.net /* * Write a function reverse(s) that reverses the character string s. * * Reverse.c - by FreeMan */ #include <stdio.h> #define MAXLEN 128 /* maximum length of the stri

2021-01-20 15:44:02 193

原创 C-Print a histogram of the frequencies of different characters in its input

分享一个大牛的人工智能教程。零基础!通俗易懂!风趣幽默!希望你也加入到人工智能的队伍中来!请点击http://www.captainbed.net /* * Write a program to print a histogram of the frequencies of different characters in its input. * * Histogram_CharFreq.c - by FreeMan */ #include <stdio.h> int main(

2021-01-08 16:02:45 188

原创 C-Print a histogram of the lengths of words in its input

分享一个大牛的人工智能教程。零基础!通俗易懂!风趣幽默!希望你也加入到人工智能的队伍中来!请点击http://www.captainbed.net /* * Write a program to print a histogram of the lengths of words in ts input. * * Histogram.c - by FreeMan */ #include <stdio.h> #define MAXWORDLEN 16 #define IN

2021-01-08 14:57:59 299

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除