基于支持向量机的手写数字识别
基于支持向量机的手写数字识别
#include <stdio.h> #include<stdlib.h> #include<windows.h> int main() { int i, j, c = 1, d = 1; int x = 1; int y = 5; int left = 0, right = 20, top = 0, bottom = 10; while (1) { x = x + c; y = y + d; system("cls"); for (i = 0; i < x; i++) printf("\n"); for (j = 0; j < y; j++) printf(" "); printf("o"); if ((x == top) || (x == bottom)); { c = -c; printf("\a"); } if ((y == right) || (y == left)) { d = -d; printf("\a"); } Sleep(100); } system("pause")
最近一年贡献:0 次
最长连续贡献:0 日
最近连续贡献:0 日
贡献度的统计数据包括代码提交、创建任务 / Pull Request、合并 Pull Request,其中代码提交的次数需本地配置的 git 邮箱是 Gitee 帐号已确认绑定的才会被统计。