1.输出想要的东西
#include<stdio.h>
int main(){
printf("");
return 0;
}
即为想要输出的东西(英文中文字符都可以)
2.换行
在想换行的字后加上“\n”
eg:
#include<stdio.h>
int main(){
printf("hello\n world\n");
return 0;
}
3.赋值(scanf)
以加法为例
#include<stdio.h>
int main(){
int a,b,c;
scarf("%d%d",&a,&b);
c=a+b;
printf("%d",c);
return 0;
}
这样就可以输出c的值了,当然加号也可以换成乘号(*)或者除号(/)
学好数学真的好重要
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » 10.16学习
发表评论 取消回复