码迷,mamicode.com
首页 >  
搜索关键字:visual stdio    ( 19543个结果
实验三
恢复内容开始 实验任务1 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main() { int x, n; srand(time(0)); for(n=1; n<=N; n++) { x = ran ...
分类:其他好文   时间:2021-04-16 12:00:33    阅读次数:0
实验3
// 一元二次方程求解(函数实现方式) // 重复执行, 直到按下Ctrl+Z结束 #include <math.h> #include <stdio.h> // 函数声明 void solve(double a, double b, double c); // 主函数 int main() { d ...
分类:其他好文   时间:2021-04-16 11:59:33    阅读次数:0
C语言:赋值
#include <stdio.h> //赋值号=,具有方向性,只能将赋值号右边的表达式的值给左边的变量 //赋值语句具有计算功能,赋值号右边可以是常量,变量或表达式都可以 //赋值就是将表达式的值存入一段连续的具有若干个存储单元的存储空间,存储空间的名称就是变量名 //没有赋值的变量,其值是不确定 ...
分类:编程语言   时间:2021-04-16 11:48:01    阅读次数:0
实验3 C语言分支语句、循环语句、函数综合应用编程-1
实验1 //生成N个0~99之间的随机整数,并打印输出 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main() { int x,n; srand(time(0)); for(n=1;n<=N;n+ ...
分类:编程语言   时间:2021-04-15 12:26:09    阅读次数:0
Cython的坑(未解决)
使用pycharm出现了错误: Compile Cython Extensions Error 点击install无效,各种方法都无效,网上说需要Microsoft Visual C++ Build Tools,使用Microsoft Visual C++ Build Tools修复仍然无效; 找到 ...
分类:其他好文   时间:2021-04-15 12:01:48    阅读次数:0
How to use Regular Expressions (Regex) in Microsoft Excel both in-cell and loops
How to use Regular Expressions (Regex) in Microsoft Excel both in-cell and loops Regular expressions are used for Pattern Matching. To use in Excel fo ...
分类:其他好文   时间:2021-04-14 12:44:22    阅读次数:0
实验三——张翼飞
实验任务一: // 生成N个0~99之间的随机整数,并打印输出 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main() { int x, n; srand(time(0)); // 以当前系统时间 ...
分类:其他好文   时间:2021-04-14 12:11:43    阅读次数:0
因子分解
输入一个数,分解成其质因子 1 #include<stdio.h> 2 3 int main() 4 { 5 int val,temp; 6 scanf("%d", &val); 7 printf("%d=1*", val); 8 temp = val; 9 for (int i = 2; i < ...
分类:其他好文   时间:2021-04-14 11:57:55    阅读次数:0
实验三
// 生成N个0~99之间的随机整数,并打印输出 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main() { int x, n; srand(time(0)); // 以当前系统时间作为随机种子 ...
分类:其他好文   时间:2021-04-13 12:30:05    阅读次数:0
c语言入门教程–-5判断语句
#include<stdio.h> int main() { int a=1; int b=1; if(a==b) { printf("相等"); } else { printf("不相等"); } return 0; } ...
分类:编程语言   时间:2021-04-13 12:15:37    阅读次数:0
19543条   上一页 1 ... 17 18 19 20 21 ... 1955 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!