https://www.myziyuan.com/
- LouisWang
- 1. 微信小程序的源码一般都没有开源的。2. 可以找一些公司有模板的功能,这个还是很容易的。
- 2021-03-25 01:15:02
- 111
- #include <stdlib.h>#include <stdio.h>#include <math.h>#include <time.h>#define numOfQuestions 10void main(){ srand(1); for(int i=0;i<numOfQuestions ;i++){ bool add = rand()%2; char oper = '-'; if(add) oper = '+'; int a = rand()%100; int b = rand()%100; if(!add) { while(b>a)b = rand()%100; } printf("%d %c %d =?", a, oper, b); int answer = 0; scanf("%d", &answer); bool correct = false; if(add) { if(answer == (a + b)) correct = true; } else { if(answer == (a - b)) correct = true; } if(correct)printf("回答正确!\n"); else printf("回答错误!\n");}}
- 2021-02-12 12:56:19
- 黑客帝国
- 求一个 表白的小程序c代码,#include <stdio.h>int main(){printf(" **** ****\n");printf(" * * * *\n");printf("* *** *\n");printf("* *\n");printf(" * *\n");printf(" * *\n");printf(" * *\n");printf(" * *\n");printf(" * *\n");printf(" * *\n");printf(" * *\n");printf(" * *\n");return 0;}
- 2021-02-12 12:56:19