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的值了,当然加号也可以换成乘号(*)或者除号(/)

 

学好数学真的好重要

 

点赞(0) 打赏

评论列表 共有 0 条评论

暂无评论

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部