-
#include<stdio.h>
int main (int a,char **b)
{ char g;
int c;
printf ("请输入类型: ");
scanf("%s",&g);
. printf("%d",g);
}查看全部 -
#include<stdio.h>
int main (int w,char **a)
{ printf("hello world!This is C style!");
return 0;
}
#include<iostream>
int main(int a,char **b)
{ std::cout<<"hello world!This is C style!"std::end1;
return 0;
}查看全部 -
3-1 存放数据的容器:常量和变量
1.声明变量
2.数据类型 int(integer整数)
3.赋值变量 当你声明一个变量的时候,事实上他是有一个默认值的,并且这个默认值是一个随机值,在某些情况下,这个值甚至有可能是一个非法值。
4.常量const(constant)常量不可以修改的特性。#include <stdio.h>
int main(int argc,char **argv)
{
const int c = 10;
c = 20;
return 0;
}查看全部 -
函数 main
参数 启动参数
语句 return,返回语句,结果0,表示该语句成功执行没有问题。否则是非零结果。查看全部 -
第一章
1-3 如何学好C++
1.C++是一门工程语言,是一种实用工具。
2.写出高效和稳定的C++程序是衡量一个人会不会C++的评判标准。
3.实践很重要。独立思考,独立解决问题。
查看全部 -
#include <iostream>
#include<stdio.h>
int main(int argc,**char argv)
printf("hello world! this is C ctyle\n");
std::cout<<"hello world! this is C++ style\n"<<std::endl;
return 0;查看全部 -
#include <studio.h>
#include <iostream>都是是预处理指令
(int argc, char** argv)两个参数一起表达了这个程序的启动参数。
std::cout<<“内容\n”<<std::dnel是标准输出格式
printf("内容\n")和std::cout<<"内容\n"<<std::endl是相同的
查看全部 -
#include <stdio.h>
int main(int argc,char **argv)
{
printf("Hello World!\n");
return 0;
}查看全部 -
#include<stdio.h>
int main()
{
printf("hello word");
return o;
}查看全部 -
#include <iostream>
main
{
print("hello world");
return 0;
}查看全部 -
argc表示参数个数
参数argv是参数组
两个参数一起表达了这个程序的启动参数查看全部 -
int a=99
声明一个变量
const int a
声明一个常量查看全部 -
整型又可以分为有符号和无符号两个大类,这里的符号,指的其实就是正负号,有符号的数据类型,可以用来存放正数和负数,而无符号的数据类型,只能用来存放正数。查看全部
-
那么如果我们将 8 个 bit 组合起来,通过排列组合,我们就可以得到 2 的 8 次方,也就是 256 个数字的数据容量。在计算机中,我们把 8 个 bit 的容量称之为 1 个 byte, 中文叫做字节。8bit = 1 byte查看全部
-
在计算机中,存在这样的一个存储单元,一个存储单元可以存放 0 或者 1 两种状态,那么他就能存放两个数字。我们管这样一个存储单元叫做 1bit,中文叫做 1 位。查看全部
-
const是常量的前缀查看全部
-
一个程序里,有且只有一个main函数
查看全部 -
8bit=1bite查看全部
-
printf(“hello world”\n);
其中\n表示换行符,为什么要换行?这个和开头的include、stdio什么有关系
查看全部 -
#include <stdio.h> //标准输入输出
int main(int argc,char **argv) //主函数,是程序的入口函数。一个程序里有且只有一个main函数
{
printf("Hello World!\n"); //stdio.h中包含printf功能
return 0;}
查看全部 -
c with classes 是c语言一开始的叫法
查看全部 -
c语言是c++的前身
查看全部 -
亚历山大.格拉哈姆.贝尔
查看全部 -
main()函数,没错,就是字面上看到的意思,主函数,这是一个特殊的函数,它是程序的入口函数。一个程序里,有且只有一个 main 函数。
\n表示换行符
printf 这个功能在 stdio.h 中包含,这也就是为什么我们要在程序一开头就 include 它的原因。
查看全部 -
std::cout << "a: " << a << ", b: " << b << std::endl;
引号内的不变
查看全部
举报