当前位置:首页 > Software

Software

  • 最新
  • 浏览
  • 评论

一文快速搞定基本Python

chanra1n4年前 (2020-11-22)Python4089
一文快速搞定基本Python
本文适宜有熟练其他高级语言编程基础的同行参阅,或复习用,转载请保留作者信息 Myfpga.cn Chanra1n输入输出#input输入命令,中间的即提示语,左面的a为输入的值存到哪里 a=input("请输入a的值:") #print()可以直接print("He...

C++ 数组的各类性质和用法

chanra1n4年前 (2020-11-03)C++4244
C++ 数组的各类性质和用法
#include<iostream>  using namespace std; void addarr(int *k,int len); //文中形如sizeof(x)/sizeof(x[0]) 是用数组占用空...

数据结构

chanra1n4年前 (2020-10-28)C++4691
数据结构
#include<iostream> using namespace std; struct books{ char name[10]; int num; float price; }book; int&nb...

C和C++中的字符串

chanra1n4年前 (2020-10-28)C++4866
C和C++中的字符串
/*C风格字符串的声明和使用  #include<cstdio.h> int main() { char x[]={'H','e','l','l','o','&...

Break和Continue的区别

chanra1n4年前 (2020-10-28)C++5009
Break和Continue的区别
#include<iostream>  using namespace std; int main() { int x=0; for(x=0;x<10;x++) { if(x==3) break;...

变量作用域

chanra1n4年前 (2020-10-28)C++4904
变量作用域
#include<iostream> void print(); int main() { char a=0; for(a=0;a<20;a++) print(); return 0;  }  v...

函数声明和使用

chanra1n4年前 (2020-10-28)C++5002
函数声明和使用
#include<iostream> using namespace std; int sum(int a,int b);//函数声明  int main() { cout <<&nb...

数据类型及其占用空间

chanra1n4年前 (2020-10-28)C++4836
数据类型及其占用空间
#include<iostream> using namespace std; int main() { cout << "The size of int is&nb...

C++入门 输出Hello World

chanra1n4年前 (2020-10-28)C++4877
C++入门 输出Hello World
#include <iostream>using namespace std;int main(){     cout << "Hello, world!...

列表作为函数参数

Doraemon5年前 (2020-02-22)Python4302
列表作为函数参数
列表作为函数参数,函数中可以修改原列表def multiply(values,factor):     for i in range(len(values)):        values[i]*=factor          aList=[1,2,3,4,5...