第二次作业
GIT地址 | https://github.com/pengliuyang/-urban-eureka |
GIT用户名 | 彭留洋 |
学号后五位 | 62622 |
博客地址 | https://www.cnblogs.com/1234ply/ |
作业链接 | https://www.cnblogs.com/ChildishChange/p/10398212.html |
环境配置上的问题主要通过在网上查询方法,指令等。
下载好之后点击安装,可自定义安装路径,2.17版本可按照默认选项进行安装,这里讲一讲遇到的问题:
使用Git克隆及提交代码
在Git上注册自己的账号,在官方网站上下载了Git Bash。找到阿超的计算机,点击fork,拷贝到自己的账号下
安装完成后可在开始菜单找到Git文件夹,运行Git Bash 会弹出一个命令行类似的窗口
接下来,我直接进行了一些基本信息设置
a、设置用户名:git config -- global user.name '你再github上注册的用户名';
b、设置用户邮箱:git config -- global user.email '注册时候的邮箱';
然而出现了fatal致命错误,这时我们可以通过git init 解决如果不执行 git init就会出现错误!!!
#include<stdio.h> #include<iostream> #include<cstdlib> #include<string.h> #include<time.h> #include<windows.h> using namespace std; char s[4]={'+','-','*','/'};//符号 int main() { srand(time(NULL));//用系统当前时间设置rand()随机序列种子,保证每次运行随机序列不一样 //存入文件 FILE *fp = fopen("./result.txt", "a+"); if (fp==0) { printf("can't open file "); return 0; } fseek(fp, 0, SEEK_END); fputs("2018103006 ", fp); int p = 0,i=0; int counts=0; printf("请输入生成练习题个数:"); scanf("%d", &p ); printf("2018103006 "); for(i=1;i<=p;i++){ int c[100]= {-1}; char d[100]={0}; int ans=0,cf=1,f=0,x,y,z; int n = rand()%3+3;//运算数个数 int count_ysfu = 0; for(int j=1;j<n;++j) { x=rand()%100,y=rand()%4; //运算符 c[j]=y;count_ysfu++;//存下角标判断是否是相同运算 // cout<<"dddd"<<c[j]; //除0运算 if(x==0&&f==3){ x=rand()%100+1; } //数 char now[3]; itoa(x,now,10); strcat(d,now); if(y==3){ char zfc[4] = "÷ "; strcat(d,zfc); }else{ char zfc[2]; zfc[0] = s[y]; zfc[1] = '